diff options
author | Gerald Carter <jerry@samba.org> | 2003-02-10 17:31:25 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-02-10 17:31:25 +0000 |
commit | 89393d93b0d58504b65a423cc442bee4d7051298 (patch) | |
tree | 7d53c8a4bffc75103c1e849bcabf2619c6f85492 | |
parent | 8a20407442efa0f9fe43e1b1c61140a0771c6ff8 (diff) | |
download | samba-89393d93b0d58504b65a423cc442bee4d7051298.tar.gz samba-89393d93b0d58504b65a423cc442bee4d7051298.tar.bz2 samba-89393d93b0d58504b65a423cc442bee4d7051298.zip |
autogen - cope with autoconf-2.53/2.13 systems (like RH 7.3)
findsmb - use @PERL@
(This used to be commit f869db787b555dc99e30d82493666c8a388f8f81)
-rwxr-xr-x | source3/autogen.sh | 27 | ||||
-rwxr-xr-x | source3/script/findsmb.in | 2 |
2 files changed, 23 insertions, 6 deletions
diff --git a/source3/autogen.sh b/source3/autogen.sh index 28d1608287..a2228a6fd9 100755 --- a/source3/autogen.sh +++ b/source3/autogen.sh @@ -2,7 +2,11 @@ # Run this script to build samba from CVS. -if which autoconf > /dev/null +## first try the default names +AUTOHEADER="autoheader" +AUTOCONF="autoconf" + +if which $AUTOCONF > /dev/null then : else @@ -10,10 +14,23 @@ else exit 1 fi -echo "$0: running autoheader" -autoheader || exit 1 +## +## what version do we need? +## +if [ `$AUTOCONF --version | head -1 | cut -d. -f 2` -lt 53 ]; then + + ## maybe it's installed under a different name (e.g. RedHat 7.3) + + AUTOCONF="autoconf-2.53" + AUTOHEADER="autoheader-2.53" + +fi + +echo "$0: running $AUTOHEADER" +$AUTOHEADER || exit 1 + +echo "$0: running $AUTOCONF" +$AUTOCONF || exit 1 -echo "$0: running autoconf" -autoconf || exit 1 echo "Now run ./configure and then make." exit 0 diff --git a/source3/script/findsmb.in b/source3/script/findsmb.in index 42c1dd706c..6276bd3f39 100755 --- a/source3/script/findsmb.in +++ b/source3/script/findsmb.in @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!@PERL@ # # Prints info on all smb responding machines on a subnet. # This script needs to be run on a machine without nmbd running and be |