~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to bootstrap.sh

  • Committer: Christos Tsantilas
  • Date: 2009-02-18 22:18:35 UTC
  • mfrom: (9294.1.215 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090218221835-lfxxe3bs8uhu0b1h
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    # instead of manualy moving files from ltdl to lib/libLtdl
60
60
    if egrep -q '^[[:space:]]*AC_LIBLTDL_' configure.in
61
61
    then
62
 
        extras="--ltdl"
 
62
        if libtoolize$ltver --help | grep -q -- --ltdl.=; then
 
63
            ltdl="--ltdl=lib/libLtdl"
 
64
        else
 
65
            ltdl="--ltdl"
 
66
            copy_libltdl=1
 
67
        fi
63
68
    else
64
 
        extras=""
 
69
        ltdl=""
65
70
    fi
66
71
 
67
 
    bootstrap libtoolize$ltver $extras --force --copy --automake
 
72
    bootstrap libtoolize$ltver $ltdl --force --copy --automake
68
73
 
69
74
    # customize generated libltdl, if any
70
 
    if test -d libltdl
 
75
    if test -d libltdl && [ $copy_libltdl ]
71
76
    then
72
77
        src=libltdl
73
78