You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2004/06/06 23:19:19 UTC

cvs commit: apr/build buildcheck.sh

jerenkrantz    2004/06/06 14:19:19

  Modified:    .        buildconf
               build    buildcheck.sh
  Log:
  Add libtool* as installed by FreeBSD ports.  No 'libtool' is installed, all
  are suffixed by version number.  Prefer 1.5 over 1.4, if available.
  
  Revision  Changes    Path
  1.30      +1 -1      apr/buildconf
  
  Index: buildconf
  ===================================================================
  RCS file: /home/cvs/apr/buildconf,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -u -r1.29 -r1.30
  --- buildconf	28 Feb 2004 18:31:41 -0000	1.29
  +++ buildconf	6 Jun 2004 21:19:19 -0000	1.30
  @@ -22,7 +22,7 @@
   #
   build/buildcheck.sh || exit 1
   
  -libtoolize=`build/PrintPath glibtoolize libtoolize`
  +libtoolize=`build/PrintPath glibtoolize libtoolize libtoolize15 libtoolize14`
   if [ "x$libtoolize" = "x" ]; then
       echo "libtoolize not found in path"
       exit 1
  
  
  
  1.13      +1 -1      apr/build/buildcheck.sh
  
  Index: buildcheck.sh
  ===================================================================
  RCS file: /home/cvs/apr/build/buildcheck.sh,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -u -r1.12 -r1.13
  --- buildcheck.sh	15 Feb 2004 17:03:41 -0000	1.12
  +++ buildcheck.sh	6 Jun 2004 21:19:19 -0000	1.13
  @@ -38,7 +38,7 @@
   # output is multiline from 1.5 onwards
   
   # Require libtool 1.3.3 or newer
  -libtool=`build/PrintPath glibtool libtool`
  +libtool=`build/PrintPath glibtool libtool libtool15 libtool14`
   lt_pversion=`$libtool --version 2>/dev/null|sed -e 's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
   if test -z "$lt_pversion"; then
   echo "buildconf: libtool not found."