Show
Ignore:
Timestamp:
08/08/07 12:01:50 (3 years ago)
Author:
des
Message:

Remove FreeBSD workaround; the FreeBSD ports tree has had working autotools
for two weeks now. Also fix inconsistent indentation.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/varnish-cache/autogen.sh

    r1720 r1811  
    1010case `uname -s` in 
    1111Darwin) 
    12         LIBTOOLIZE=glibtoolize 
    13         ;; 
     12    LIBTOOLIZE=glibtoolize 
     13    ;; 
    1414FreeBSD) 
    15         LIBTOOLIZE=libtoolize 
    16         if [ -d /usr/local/gnu-autotools/bin ] ; then 
    17                 PATH=/usr/local/gnu-autotools/bin:${PATH} 
    18                 export PATH 
    19                 FIX_BROKEN_FREEBSD_PORTS="-I /usr/local/share/aclocal" 
    20         fi 
    21         ;; 
     15    LIBTOOLIZE=libtoolize 
     16    ;; 
    2217Linux) 
    23         LIBTOOLIZE=libtoolize 
    24         ;; 
     18    LIBTOOLIZE=libtoolize 
     19    ;; 
     20*) 
     21    warn "unrecognized platform:" `uname -s` 
     22    LIBTOOLIZE=libtoolize 
    2523esac 
    2624 
     
    4038set -ex 
    4139 
    42 aclocal ${FIX_BROKEN_FREEBSD_PORTS} 
     40aclocal 
    4341$LIBTOOLIZE --copy --force 
    4442autoheader