head 1.6; access; symbols UUID_1_6_2:1.5 UUID_1_6_1:1.2 UUID_1_6_0:1.2 UUID_1_5_1:1.2 UUID_1_5_0:1.2 UUID_1_4_2:1.2 UUID_1_4_1:1.2 UUID_1_4_0:1.2 UUID_1_3_2:1.2 UUID_1_3_1:1.2 UUID_1_3_0:1.2 UUID_1_2_1:1.2 UUID_1_2_0:1.2 UUID_1_1_2:1.2 UUID_1_1_1:1.2 UUID_1_1_0:1.2 UUID_1_0_4:1.2 UUID_1_0_3:1.2 UUID_1_0_2:1.2 UUID_1_0_1:1.2 UUID_1_0_0:1.2 UUID_0_9_7:1.2 UUID_0_9_6:1.2 UUID_0_9_5:1.2 UUID_0_9_4:1.2 UUID_0_9_3:1.1 UUID_0_9_2:1.1 UUID_0_9_1:1.1 UUID_0_9_0:1.1; locks; strict; comment @# @; 1.6 date 2008.07.05.12.58.15; author rse; state dead; branches; next 1.5; commitid XLXN7vUmABwPcC9t; 1.5 date 2008.07.04.21.45.50; author rse; state Exp; branches; next 1.4; commitid MPsbTRHcN3EO9x9t; 1.4 date 2008.03.06.12.18.58; author rse; state Exp; branches; next 1.3; commitid q7nsvokWQQfuS3Us; 1.3 date 2008.03.06.10.04.49; author rse; state Exp; branches; next 1.2; commitid iOAuqNMilfOt83Us; 1.2 date 2004.01.19.12.15.57; author rse; state Exp; branches; next 1.1; 1.1 date 2004.01.06.20.14.28; author rse; state Exp; branches; next ; desc @@ 1.6 log @remove OSSP uuid from CVS -- it is now versioned controlled in a Monotone repository @ text @## ## devtool.func -- Development Tool Functions ## Copyright (c) 2001-2002 Ralf S. Engelschall ## devtool_require () { t="$1"; o="$2"; p="$3"; e="$4"; a="$5" v=`($t $o | head -1 | awk "{ print \\\$$p; }") 2>/dev/null` if [ ".$v" = . ]; then echo "devtool:ERROR: unable to determine version of $t" 1>&2 exit 1 fi case "$v" in $e ) ;; $a ) echo "devtool:WARNING: $t version $v still accepted, although expected $e." 1>&2 ;; * ) echo "devtool:ERROR: $t version $e expected, but found $v." 1>&2 exit 1 ;; esac echo "$v" } devtool_autogen () { tool=$1 shift case $tool in autoconf ) autoconf_version=`devtool_require autoconf --version 4 "$1" "$2"` echo "generating (GNU Autoconf $autoconf_version): configure config.h.in" autoconf autoheader 2>&1 | grep -v "is unchanged" rm -rf autom4te.cache >/dev/null 2>&1 ;; libtool ) libtoolize_version=`devtool_require libtoolize --version 4 "$1" "$2"` echo "generating (GNU Libtool $libtoolize_version): ltmain.sh, libtool.m4, config.guess, config.sub" cat `libtoolize --force --copy --install |\ egrep "\\.m4'" | egrep -v "add the contents of" |\ sed -e 's;^[^\`]*\`;;' -e "s;'.*;;"` >libtool.m4 rm -f install-sh ;; shtool ) shtoolize_version=`devtool_require shtoolize -v 3 "$1" "$2"` echo "generating (GNU Shtool $shtoolize_version): shtool" shift shift shtoolize -q "$@@" ;; esac } devtool_autoclean () { tool=$1 shift case $tool in autoconf ) echo "removing: configure config.h.in" rm -f configure config.h.in ;; libtool ) echo "removing: ltmain.sh libtool.m4 config.guess config.sub" rm -f ltmain.sh libtool.m4 config.guess config.sub ;; shtool ) echo "removing: shtool" rm -f shtool ;; esac } @ 1.5 log @upgrade to GNU libtool 2.2.4 and GNU autoconf 2.62 @ text @@ 1.4 log @do not keep install-sh from Libtool @ text @d41 2 a42 2 libtoolize --force --copy --install >/dev/null 2>&1 cat `libtoolize --force --copy --install --dry-run | sed -e '1,/add the contents of/d' |\ @ 1.3 log @Upgrade build environment to GNU libtool 2.2 @ text @d44 1 @ 1.2 log @strip trailing whitespaces @ text @d41 3 a43 3 libtoolize --force --copy >/dev/null 2>&1 cp `libtoolize --force --copy --dry-run | grep "add the contents of" |\ sed -e 's;^[^\`]*\`;;' -e "s;'.*;;"` libtool.m4 @ 1.1 log @import the first cut for our forthcoming OSSP uuid library @ text @d3 1 a3 1 ## Copyright (c) 2001-2002 Ralf S. Engelschall @