Show
Ignore:
Timestamp:
04/05/06 11:40:22 (4 years ago)
Author:
phk
Message:

Account for the last byte of the header.

Files:
1 modified

Legend:

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

    r101 r118  
    33# $Id$ 
    44# 
     5 
     6set -ex 
    57 
    68if [ -d /usr/local/gnu-autotools/bin ] ; then 
     
    1113base=$(cd $(dirname $0) && pwd) 
    1214for dir in $base $base/contrib/libevent ; do 
     15        ( 
    1316        echo $dir 
    1417        cd $dir 
     
    1821        automake --add-missing --copy --force --foreign 
    1922        autoconf 
     23        ) 
    2024done 
     25 
     26sh configure \ 
     27        --enable-pedantic \ 
     28        --enable-wall  \ 
     29        --enable-werror  \ 
     30        --enable-dependency-tracking 
     31 
     32# This is a safety-measure during development 
     33( cd lib/libvcl && ./*.tcl )