#! /bin/sh # Time-stamp: "2012-08-11 08:13:30 bkorb" # ## This file is part of AutoOpts, a companion to AutoGen. ## AutoOpts is free software. ## AutoOpts is Copyright (c) 1992-2012 by Bruce Korb - all rights reserved ## ## AutoOpts is available under either of two licenses. The license ## in use must be one of these two and the choice is under the control ## of the user of the license. ## ## The GNU Lesser General Public License, version 3 or later ## See the files "COPYING.lgplv3" and "COPYING.gplv3" ## ## The Modified Berkeley Software Distribution License ## See the file "COPYING.mbsd" ## ## These files have the following md5sums: ## ## 43b91e8ca915626ed3818ffb1b71248b pkg/libopts/COPYING.gplv3 ## 06a1a2e4760c90ea5e1dad8dfaac4d39 pkg/libopts/COPYING.lgplv3 ## 66a5cedaf62c4b2637025f049f9b826f pkg/libopts/COPYING.mbsd egrep '#undef +AUTOOPTS_ENABLED' ${top_builddir}/config.h >/dev/null && \ exit 0 srcdir=`dirname $0` srcdir=`cd ${srcdir} ; pwd` . ${top_builddir}/autoopts/test/defs test -z "${POSIX_SHELL}" && exit 1 rm -f ${DESTdestdir}/options.h opthdrsrc=${srcdir}/autoopts/options.h cfgf=${top_builddir}/config.h { sed '/^#include /dev/null then echo '#include ' else echo '#include ' ; fi if ${EGREP} 'define +HAVE_LIMITS_H' ${cfgf} >/dev/null then echo '#include ' else echo '#include ' ; fi if ${EGREP} 'define +HAVE_STDBOOL_H' ${cfgf} >/dev/null then echo '#include ' else cat <<- _EOF_ typedef enum { false = 0, true = 1 } _Bool; #define bool _Bool #define true 1 #define false 0 _EOF_ fi ${EGREP} 'define +NO_OPTIONAL_OPT_ARGS' ${cfgf} if ${EGREP} 'define +HAVE_INTPTR_T' ${cfgf} >/dev/null then : else sizeof_charp=`${EGREP} 'define +SIZEOF_CHARP ' ${cfgf} | \ sed 's/.*SIZEOF_CHARP *//'` sizeof_long=` ${EGREP} 'define +SIZEOF_LONG ' ${cfgf} | \ sed 's/.*SIZEOF_LONG *//'` if test "X${sizeof_charp}" = "X${sizeof_long}" then ptrtype=long else ptrtype=int fi cat <<- _EOF_ #ifndef HAVE_UINTPTR_T #define HAVE_UINTPTR_T 1 #define HAVE_INTPTR_T 1 typedef $ptrtype intptr_t; typedef unsigned $ptrtype uintptr_t; #endif /* HAVE_UINTPTR_T */ _EOF_ fi sedcmd='1,/END-CONFIGURED-HEADERS/d' if ${EGREP} 'define +HAVE_PATHFIND' ${cfgf} >/dev/null then nopathfind='/From:.*pathfind\.c/,/#endif.*HAVE_PATHFIND/d' else nopathfind='/HAVE_PATHFIND/d' ; fi sed "${sedcmd};${nopathfind}" ${opthdrsrc} } > ${DESTdestdir}/options.h test -d "${DESTpkgdatadir}" && { rmbuild='/# *START-BUILDTREE-ISMS/,/# *END-BUILDTREE-ISMS/d /# *END-INSTALL-ONLY-CODE/d /^##/d' cd ${DESTpkgdatadir} for f in * do case "$f" in optlib.tlib | getopt.tpl | usage.tlib | cmd-doc.tlib | \ agtexi-cmd.tpl | agman1.tpl | aginfo.tpl ) sed "${rmbuild}" $f > $f.tmp mv -f $f.tmp $f ;; *.* ) : ;; * ) chmod a+x $f ;; esac done } ## Local Variables: ## Mode: shell-script ## indent-tabs-mode: nil ## sh-basic-offset: 4 ## sh-indent-after-do: 4 ## sh-indentation: 4 ## sh-indent-for-case-label: 0 ## sh-indent-for-case-alt: 4 ## End: # end of install-hook.sh