View | Details | Raw Unified | Return to bug 135396
Collapse All | Expand All

(-)apu-config.in (-1 / +10 lines)
Lines 31-36 Link Here
31
INCLUDES="@APRUTIL_INCLUDES@"
31
INCLUDES="@APRUTIL_INCLUDES@"
32
LDFLAGS="@APRUTIL_LDFLAGS@"
32
LDFLAGS="@APRUTIL_LDFLAGS@"
33
LDAP_LIBS="@LDADD_ldap@"
33
LDAP_LIBS="@LDADD_ldap@"
34
DBM_LIBS="@LDADD_dbm_db@ @LDADD_dbm_gdbm@ @LDADD_dbm_ndbm@"
34
35
35
APRUTIL_LIBNAME="@APRUTIL_LIBNAME@"
36
APRUTIL_LIBNAME="@APRUTIL_LIBNAME@"
36
37
Lines 56-61 Link Here
56
  --libs            print library information
57
  --libs            print library information
57
  --avoid-ldap      do not include ldap library information with --libs
58
  --avoid-ldap      do not include ldap library information with --libs
58
  --ldap-libs       print additional library information to link with ldap
59
  --ldap-libs       print additional library information to link with ldap
60
  --avoid-dbm       do not include DBM library information with --libs
61
  --dbm-libs        print additional library information to link with DBM
59
  --srcdir          print APR-util source directory
62
  --srcdir          print APR-util source directory
60
  --link-ld         print link switch(es) for linking to APR-util
63
  --link-ld         print link switch(es) for linking to APR-util
61
  --link-libtool    print the libtool inputs for linking to APR-util
64
  --link-libtool    print the libtool inputs for linking to APR-util
Lines 115-126 Link Here
115
    --avoid-ldap)
118
    --avoid-ldap)
116
    LDAP_LIBS=""
119
    LDAP_LIBS=""
117
    ;;
120
    ;;
121
    --avoid-dbm)
122
    DBM_LIBS=""
123
    ;;
118
    --libs)
124
    --libs)
119
    flags="$flags $LDAP_LIBS $LIBS"
125
    flags="$flags $LDAP_LIBS $DBM_LIBS $LIBS"
120
    ;;
126
    ;;
121
    --ldap-libs)
127
    --ldap-libs)
122
    flags="$flags $LDAP_LIBS"
128
    flags="$flags $LDAP_LIBS"
123
    ;;
129
    ;;
130
    --dbm-libs)
131
    flags="$flags $DBM_LIBS"
132
    ;;
124
    --includedir)
133
    --includedir)
125
    if test "$location" = "installed"; then
134
    if test "$location" = "installed"; then
126
        flags="$includedir"
135
        flags="$includedir"

Return to bug 135396