Changeset 931

Show
Ignore:
Timestamp:
10/09/07 12:46:02 (1 year ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r925 r931  
     12007-10-09  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * autogen.sh: Added check for glibtool. Without this, it wasn't 
     4        compiling on OS X without using a custom LIBTOOL environment 
     5        variable. 
     6 
    172007-09-27  Stefan de Konink <skinkie@xs4all.nl>, A.D.F  <adefacc@tin.it> 
    28 
  • cherokee/trunk/autogen.sh

    r286 r931  
    1818test -z "$AUTOCONF" && AUTOCONF=autoconf 
    1919test -z "$AUTOHEADER" && AUTOHEADER=autoheader 
    20 test -z "$LIBTOOL" && LIBTOOL=libtool 
    21 test -z "$LIBTOOLIZE" && LIBTOOLIZE=libtoolize 
     20if [ -x /usr/bin/glibtool ]; then 
     21 test -z "$LIBTOOL" && LIBTOOL=glibtool 
     22 test -z "$LIBTOOLIZE" && LIBTOOLIZE=glibtoolize 
     23else 
     24 test -z "$LIBTOOL" && LIBTOOL=libtool 
     25 test -z "$LIBTOOLIZE" && LIBTOOLIZE=libtoolize 
     26fi 
    2227 
    2328($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || {