source: trunk/third/soup/configure.in @ 18149

Revision 18149, 15.7 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18148, which included commits to RCS files with non-trunk default branches.
RevLine 
[18148]1dnl *******************************************
2dnl *** Initialize automake and set version ***
3dnl *******************************************
4
5AC_INIT(src/libsoup/soup.h)
6
7# Increment on interface addition. Reset on removal.
8SOUP_AGE=3
9
10# Increment on interface add, remove, or change.
11SOUP_CURRENT=6
12
13# Increment on source change. Reset when CURRENT changes.
14SOUP_REVISION=4
15
16AC_SUBST(SOUP_CURRENT)
17AC_SUBST(SOUP_REVISION)
18AC_SUBST(SOUP_AGE)
19
20# Update in src/libsoup/soup-private.h for Windows
21AM_INIT_AUTOMAKE(soup, 0.7.10)
22
23AM_CONFIG_HEADER(config.h)
24AM_MAINTAINER_MODE
25AC_PROG_MAKE_SET
26
27
28dnl ***************************
29dnl *** Set debugging flags ***
30dnl ***************************
31
32debug_default=minimum
33
34# Declare --enable-* args and collect ac_help strings
35AC_ARG_ENABLE(debug,
36              [  --enable-debug=[no/minimum/yes] turn on debugging [default=$debug_default]],,
37              enable_debug=$debug_default)
38
39# Set the debug flags
40if test "x$enable_debug" = "xyes"; then
41        test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
42        SOUP_DEBUG_FLAGS="-DG_ENABLE_DEBUG"
43else
44        if test "x$enable_debug" = "xno"; then
45                SOUP_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
46        fi
47fi
48
49AC_SUBST(SOUP_DEBUG_FLAGS)
50
51
52dnl ***************************
53dnl *** Checks for programs ***
54dnl ***************************
55
56AC_PROG_CC
57AM_PROG_CC_STDC
58AC_PROG_INSTALL
59
60# Set STDC_HEADERS
61AC_HEADER_STDC
62
63# Initialize libtool
64AM_PROG_LIBTOOL
65
66# This isn't a program, but it doesn't fit anywhere else...
67AC_FUNC_ALLOCA
68
69dnl ***********************
70dnl *** Checks for glib ***
71dnl ***********************
72
73AC_MSG_CHECKING(whether to build against glib 2.0)
74AC_ARG_ENABLE(glib2, [\
75  --enable-glib2  Build Soup against glib 2.0], ,
76enable_glib2=no)
77AC_MSG_RESULT($enable_glib2)
78       
79if test x"$enable_glib2" != xno; then
80        AM_PATH_GLIB_2_0(2.0.0,, AC_MSG_ERROR([Cannot find glib 2.0]))
81        GLIB_CFLAGS=`$PKG_CONFIG --cflags glib-2.0`
82        GLIB_LIBS=`$PKG_CONFIG --libs glib-2.0`
83        GMODULE_LIBS=`$PKG_CONFIG --libs gmodule-2.0`
84        FAVOUR_LIBXML=2
85        SOUP_PKGCONFIG_REQUIRES="glib-2.0"
86        AC_SUBST(SOUP_PKGCONFIG_REQUIRES)
87        AC_DEFINE(SOUP_GLIB2)
88else
89        AM_PATH_GLIB(1.2.0,,
90                AC_MSG_ERROR([Cannot find GLIB: Is glib-config in path?]))
91        GLIB_CFLAGS=`glib-config --cflags glib`
92        GLIB_LIBS=`glib-config --libs glib`
93        GMODULE_LIBS=`glib-config --libs gmodule`
94        FAVOUR_LIBXML=1
95        SOUP_PKGCONFIG_REQUIRES="glib"
96        AC_SUBST(SOUP_PKGCONFIG_REQUIRES)
97fi
98
99AC_SUBST(GLIB_CFLAGS)
100AC_SUBST(GLIB_LIBS)
101AC_SUBST(GMODULE_LIBS)
102
103
104dnl ****************************
105dnl *** Checks for gnome-xml ***
106dnl ****************************
107
108AC_ARG_WITH(libxml,
109        [  --with-libxml=[1/2] which version of libxml to use [default=$FAVOUR_LIBXML]],,
110        with_libxml=$FAVOUR_LIBXML)
111
112if test "x$with_libxml" = "x" -o "$with_libxml" = "yes"; then
113        with_libxml=$FAVOUR_LIBXML
114fi
115
116if test "$with_libxml" = "1"; then
117        AC_PATH_PROG(XML_CONFIG,xml-config,no)
118        if test x$XML_CONFIG = xno; then
119                AC_MSG_ERROR([Cannot find LIBXML: Is xml-config in path?])
120        fi
121
122        XML_MIN_VERSION=1.8.8
123else
124        if test "$with_libxml" = "2"; then
125                AC_PATH_PROG(XML_CONFIG,xml2-config,no)
126                if test x$XML_CONFIG = xno; then
127                        AC_MSG_ERROR([Cannot find LIBXML2: Is xml2-config in path?])
128                fi
129
130                XML_MIN_VERSION=2.3.10
131        else
132                AC_MSG_ERROR(Can't use libxml version $with_libxml)
133        fi
134fi
135
136dnl Check version
137XML_VERSION=`$XML_CONFIG --version`
138ver=`echo $XML_VERSION | awk -F. '{printf("%d", ($1*1000+$2)*1000+$3);}'`
139minver=`echo $XML_MIN_VERSION | awk -F. '{printf("%d", ($1*1000+$2)*1000+$3);}'`
140if test "$minver" -gt "$ver"
141then
142        AC_MSG_ERROR(Found libxml version $XML_VERSION. You need $XML_MIN_VERSION or newer)
143fi
144
145XML_CFLAGS=`$XML_CONFIG --cflags`
146XML_LIBS=`$XML_CONFIG --libs`
147
148AC_SUBST(XML_CFLAGS)
149AC_SUBST(XML_LIBS)
150
151
152dnl ***********************
153dnl *** Checks for popt ***
154dnl ***********************
155
156AC_ARG_WITH(popt-includes,
157            [  --with-popt-includes     Specify location of popt headers],
158            [popt_inc_prefix=-I$withval])
159
160AC_ARG_WITH(popt-libs,
161            [  --with-popt-libs         Specify location of popt libs],
162            [popt_prefix=$withval],
163            [popt_prefix=/usr/lib])
164       
165save_CPPFLAGS=$CPPFLAGS
166save_LIBS=$LIBS
167CPPFLAGS="$CPPFLAGS $popt_inc_prefix"
168LIBS="$LIBS -L$popt_prefix"
169
170AC_CHECK_LIB(popt,
171             poptGetContext,
172             [POPT_LIBS="$LIBS -lpopt"] ,
173             AC_MSG_ERROR([popt is required]))
174AC_CHECK_HEADERS(popt.h, [POPT_CFLAGS="$CFLAGS"], AC_MSG_ERROR([popt.h is required]))
175
176CPPFLAGS=$save_CPPFLAGS
177LIBS=$save_LIBS
178
179AC_SUBST(POPT_CFLAGS)
180AC_SUBST(POPT_LIBS)
181
182
183dnl **********************************************
184dnl *** Variable substitution for soup*Conf.sh ***
185dnl **********************************************
186
187### soupConf.sh
188SOUP_LIBDIR='-L${libdir}'
189SOUP_INCLUDEDIR=" -I${includedir}/soup $GLIB_CFLAGS $XML_CFLAGS"
190SOUP_LIBS="-lsoup $GLIB_LIBS $XML_LIBS"
191
192AC_SUBST(SOUP_LIBDIR)
193AC_SUBST(SOUP_INCLUDEDIR)
194AC_SUBST(SOUP_LIBS)
195
196### soup-apacheConf.sh
197SOUP_APACHE_LIBDIR='-L${libdir}'
198SOUP_APACHE_INCLUDEDIR="$SOUP_INCLUDEDIR $APACHE_CFLAGS"
199SOUP_APACHE_LIBS="$SOUP_LIBS -lsoup-apache $APACHE_LIBS"
200
201AC_SUBST(SOUP_APACHE_LIBDIR)
202AC_SUBST(SOUP_APACHE_INCLUDEDIR)
203AC_SUBST(SOUP_APACHE_LIBS)
204
205### soup-wsdlConf.sh
206SOUP_WSDL_LIBDIR='-L${libdir}'
207SOUP_WSDL_INCLUDEDIR=" -I${includedir}/soup $GLIB_CFLAGS $XML_CFLAGS"
208SOUP_WSDL_LIBS="$SOUP_LIBS -lwsdl"
209
210AC_SUBST(SOUP_WSDL_LIBDIR)
211AC_SUBST(SOUP_WSDL_INCLUDEDIR)
212AC_SUBST(SOUP_WSDL_LIBS)
213
214
215dnl *********************************
216dnl *** Networking library checks ***
217dnl *********************************
218
219AC_CHECK_HEADERS(unistd.h)
220AC_CHECK_HEADERS(netinet/in.h netinet/tcp.h)
221AC_CHECK_HEADERS(sys/socket.h sys/sockio.h sys/poll.h sys/param.h sys/wait.h)
222AC_CHECK_HEADERS(sys/ioctl.h sys/filio.h)
223
224AC_CHECK_FUNC(socket, , AC_CHECK_LIB(socket, socket))
225AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(nsl, gethostbyname))
226
227AC_CHECK_FUNCS(inet_pton inet_aton)
228
229### Check if we have gethostbyname_r (if so, assume gethostbyaddr_r).
230AC_CHECK_FUNC(gethostbyname_r,
231  [
232  dnl  First check for the glibc variant of gethostbyname_r
233
234  AC_MSG_CHECKING(for glibc gethostbyname_r)
235  AC_TRY_LINK([ #include <netdb.h>],[
236          struct hostent result_buf;
237          char buf[1024];
238          struct hostent* result;
239          int h_errnop;
240
241          gethostbyname_r("localhost", &result_buf, buf, sizeof(buf),
242                          &result, &h_errnop);
243        ], [
244
245          dnl Have glibc gethostbyname_r
246
247          AC_MSG_RESULT(yes)
248          AC_DEFINE(HAVE_GETHOSTBYNAME_R_GLIBC)
249          HAVE_GETHOSTBYNAME_R=yes
250
251        ], [
252
253  dnl  If we don't have glibc gethostbyname_r, check
254  dnl  for Solaris/Irix gethostbyname_r
255
256  AC_MSG_RESULT(no)
257  AC_MSG_CHECKING(for Solaris/Irix gethostbyname_r)
258  AC_TRY_LINK([ #include <netdb.h>],[
259          struct hostent result;
260          char buf[1024];
261          int h_errnop;
262
263          gethostbyname_r("localhost", &result, buf, sizeof(buf), &h_errnop);
264
265        ], [
266
267          dnl Have Solaris/Irix gethostbyname_r
268
269          AC_MSG_RESULT(yes)
270          AC_DEFINE(HAVE_GETHOSTBYNAME_R_SOLARIS)
271          HAVE_GETHOSTBYNAME_R=yes
272
273        ], [
274  dnl  If don't have Solaris/Irix gethostbyname_r, check
275  dnl  for HP-UX gethostbyname_r
276
277  AC_MSG_RESULT(no)
278  AC_MSG_CHECKING(for HP-UX gethostbyname_r)
279  AC_TRY_LINK([ #include <netdb.h>],[
280          struct hostent result;
281          char buf[1024];
282          gethostbyname_r("localhost", &result, buf);
283        ], [
284       
285          dnl Have HP-UX gethostbyname_r
286
287          AC_MSG_RESULT(yes)
288          AC_DEFINE(HAVE_GETHOSTBYNAME_R_HPUX)
289          HAVE_GETHOSTBYNAME_R=yes
290
291        ]
292     )]
293  )]
294)])
295
296### If we don't have gethostbyname_r, try to use Glib mutexes
297if test -z "$HAVE_GETHOSTBYNAME_R"; then
298        AM_PATH_GLIB(1.2.0,
299                     AC_DEFINE(HAVE_GETHOSTBYNAME_R_GLIB_MUTEX), [
300                     AC_MSG_WARN(You have neither Glib threads nor the function
301                                 gethostbyname_r.  This means that calls to
302                                 gethostbyname (called by the Soup address
303                                 functions) will not be thread safe so could
304                                 malfunction in programs that use threads.)
305                     ])
306fi
307
308
309dnl ****************************************************
310dnl *** SSL Library checks (Mozilla NSS, or OpenSSL) ***
311dnl ****************************************************
312
313AC_ARG_ENABLE(ssl,
314              [  --enable-ssl             Turn on Secure Sockets Layer support [default=yes]],,
315              enable_ssl=yes)
316
317AC_ARG_WITH(nspr-includes,
318            [  --with-nspr-includes     Specify location of Netscape Portable Runtime headers],
319            [nspr_inc_prefix=-I$withval])
320
321AC_ARG_WITH(nspr-libs,
322            [  --with-nspr-libs         Specify location of Netscape Portable Runtime libs],
323            [nspr_prefix=$withval],
324            [nspr_prefix=/usr/lib])
325
326AC_ARG_WITH(nss-includes,
327            [  --with-nss-includes      Specify location of NSS header files],
328            [nss_inc_prefix=-I$withval])
329
330AC_ARG_WITH(nss-libs,
331            [  --with-nss-libs          Specify location of NSS libs],
332            [nss_prefix=$withval],
333            [nss_prefix=/usr/lib])
334
335
336AC_ARG_WITH(openssl-includes,
337            [  --with-openssl-includes  Specify location of OpenSSL header files],
338            [openssl_inc_prefix=-I$withval])
339
340AC_ARG_WITH(openssl-libs,
341            [  --with-openssl-libs      Specify location of OpenSSL libs],
342            [openssl_prefix=$withval],
343            [openssl_prefix=/usr/lib])
344
345###
346### Allow for a custom SSL proxy name
347###
348SSL_PROXY_NAME=soup-ssl-proxy
349AC_ARG_WITH(ssl-proxy-name,
350            [  --with-ssl-proxy-name    Custom name for ssl proxy executable [default=soup-ssl-proxy]],
351            [SSL_PROXY_NAME=$withval],
352            [SSL_PROXY_NAME=soup-ssl-proxy])
353
354AC_DEFINE_UNQUOTED(SSL_PROXY_NAME, "${SSL_PROXY_NAME}")
355AC_SUBST(SSL_PROXY_NAME)
356
357###
358### Try to link statically with the SSL library
359###
360AC_ARG_ENABLE(ssl-link-static,
361              [  --enable-static-ssl      Link with SSL library statically [default=no]],
362              [enable_static_ssl=yes])
363
364if test "x$enable_ssl" = xyes; then
365        ###
366        ### Check for OpenSSL
367        ###
368        save_CPPFLAGS=$CPPFLAGS
369        CPPFLAGS="$CPPFLAGS $openssl_inc_prefix"
370        AC_CHECK_LIB(dl, dlopen, DL_LDFLAGS="-ldl", DL_LDFLAGS="")
371        AC_CHECK_HEADERS(openssl/ssl.h openssl/err.h,
372                         [enable_openssl="yes"],
373                         [enable_openssl="no"; break])
374
375        if test "x$enable_openssl" = xyes; then
376                if test "x$enable_static_ssl" = "xyes"; then
377                        OPENSSL_LIBS="$openssl_prefix/libssl.a $openssl_prefix/libcrypto.a"
378                else
379                        OPENSSL_LIBS="-L$openssl_prefix -lssl -lcrypto $DL_LDFLAGS"
380                fi
381                OPENSSL_CFLAGS=$CPPFLAGS
382                AC_DEFINE(HAVE_OPENSSL)
383        else
384                OPENSSL_LIBS=
385                OPENSSL_CFLAGS=
386        fi
387
388        AC_SUBST(OPENSSL_CFLAGS)
389        AC_SUBST(OPENSSL_LIBS)
390        CPPFLAGS=$save_CPPFLAGS
391
392        ###
393        ### Check for Mozilla NSS
394        ###
395        save_CPPFLAGS=$CPPFLAGS
396        CPPFLAGS="$CPPFLAGS $nspr_inc_prefix $nss_inc_prefix"
397        AC_CHECK_HEADERS(nss.h ssl.h pk11func.h,
398                         [enable_nss="yes"],
399                         [enable_nss="no"; break])
400
401        if test "x$enable_nss" = xyes; then
402                if test "x$enable_static_ssl" = "xyes"; then
403                        NSS_LIBS="-lpthread $nspr_prefix/libnspr4.a $nspr_prefix/libplc4.a $nspr_prefix/libplds4.a $nss_prefix/libnssb.a"
404                else
405                        NSS_LIBS="-lpthread -L$nspr_prefix -lnspr4 -lplc4 -lplds4 $nss_prefix -lnss3 -lssl3"
406                fi
407                NSS_CFLAGS=$CPPFLAGS
408                AC_DEFINE(HAVE_NSS)
409        else
410                NSS_LIBS=
411                NSS_CFLAGS=
412        fi
413
414        AC_SUBST(NSS_CFLAGS)
415        AC_SUBST(NSS_LIBS)
416        CPPFLAGS=$save_CPPFLAGS
417fi
418
419
420dnl *************************
421dnl *** Checks for Apache ***
422dnl *************************
423
424enable_apache="no"
425
426AC_PATH_PROG(APXS,apxs,no)
427if test x$APXS != xno; then
428        APACHE_CFLAGS="-I`apxs -q INCLUDEDIR CFLAGS`"
429        APACHE_LIBS=`apxs -q LDFLAGS_SHLIB LIBS_SHLIB`
430
431        save_CPPFLAGS=$CPPFLAGS
432        CPPFLAGS=$APACHE_CFLAGS
433        AC_CHECK_HEADERS(httpd.h http_config.h http_core.h http_log.h http_main.h http_protocol.h,
434                          [enable_apache="yes"],
435                          [enable_apache="no"
436                           break])
437        CPPFLAGS=$save_CPPFLAGS
438
439        AC_SUBST(APACHE_CFLAGS)
440        AC_SUBST(APACHE_LIBS)
441fi
442
443
444dnl *********************************************
445dnl *** Checks for gtk-doc (lifted from glib) ***
446dnl *********************************************
447
448AC_ARG_WITH(html-dir, [  --with-html-dir=PATH     Path to installed docs ])
449
450if test "x$with_html_dir" = "x" ; then
451  HTML_DIR='${datadir}/gtk-doc/html'
452else
453  HTML_DIR=$with_html_dir
454fi
455
456AC_SUBST(HTML_DIR)
457
458AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false)
459AM_CONDITIONAL(HAVE_GTK_DOC, $GTKDOC)
460AC_SUBST(HAVE_GTK_DOC)
461
462AC_CHECK_PROG(DB2HTML, db2html, true, false)
463AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML)
464
465dnl Let people disable the gtk-doc stuff.
466AC_ARG_ENABLE(gtk-doc,
467              [  --enable-gtk-doc         Use gtk-doc to build documentation [default=auto]],
468              enable_gtk_doc="$enableval",
469              enable_gtk_doc=auto)
470
471if test x$enable_gtk_doc = xauto ; then
472  if test x$GTKDOC = xtrue ; then
473    enable_gtk_doc=yes
474  else
475    enable_gtk_doc=no
476  fi
477fi
478
479dnl NOTE: We need to use a separate automake conditional for this
480dnl       to make this work with the tarballs.
481AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
482
483
484dnl *******************************************************
485dnl *** Type alignment test (based on the one in ORBit) ***
486dnl *******************************************************
487
488AC_DEFUN(AC_CHECK_ALIGNOF,
489[changequote(<<, >>)dnl
490dnl The name to #define.
491define(<<AC_TYPE_NAME>>, translit(alignof_$1, [a-z *], [A-Z_P]))dnl
492dnl The cache variable name.
493define(<<AC_CV_NAME>>, translit(ac_cv_alignof_$1, [ *], [_p]))dnl
494changequote([, ])dnl
495AC_MSG_CHECKING(alignment of $1)
496align_save_libs="$LIBS"
497LIBS="$GLIB_LIBS $LIBS"
498AC_CACHE_VAL(AC_CV_NAME,
499[AC_TRY_RUN([
500#include <stdio.h>
501#include <glib.h>
502typedef struct {char s1;} gstruct;
503struct test {char s1; $1 s2;};
504main()
505{
506  FILE *f=fopen("conftestval", "w");
507  if (!f) exit(1);
508  fprintf(f, "%d\n", &(((struct test*)0)->s2));
509  exit(0);
510}], AC_CV_NAME=`cat conftestval`, AC_CV_NAME=0, AC_CV_NAME=0)])dnl
511AC_MSG_RESULT($AC_CV_NAME)
512LIBS="$align_save_libs"
513AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME)
514undefine([AC_TYPE_NAME])dnl
515undefine([AC_CV_NAME])dnl
516])
517
518orig_CPPFLAGS=$CPPFLAGS
519CPPFLAGS=$GLIB_CFLAGS
520AC_CHECK_ALIGNOF(gboolean)
521AC_CHECK_ALIGNOF(gchar)
522AC_CHECK_ALIGNOF(guchar)
523AC_CHECK_ALIGNOF(gint)
524AC_CHECK_ALIGNOF(guint)
525AC_CHECK_ALIGNOF(gshort)
526AC_CHECK_ALIGNOF(gushort)
527AC_CHECK_ALIGNOF(glong)
528AC_CHECK_ALIGNOF(gulong)
529AC_CHECK_ALIGNOF(gint8)
530AC_CHECK_ALIGNOF(guint8)
531AC_CHECK_ALIGNOF(gint16)
532AC_CHECK_ALIGNOF(guint16)
533AC_CHECK_ALIGNOF(gint32)
534AC_CHECK_ALIGNOF(guint32)
535AC_CHECK_ALIGNOF(gfloat)
536AC_CHECK_ALIGNOF(gdouble)
537AC_CHECK_ALIGNOF(gpointer)
538AC_CHECK_ALIGNOF(gstruct)
539CPPFLAGS=$orig_CPPFLAGS
540
541
542dnl *************************************
543dnl *** Warnings to show if using GCC ***
544dnl *************************************
545
546AC_ARG_ENABLE(more-warnings,
547              [  --disable-more-warnings  Inhibit compiler warnings],
548              set_more_warnings=no)
549
550if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
551        CFLAGS="$CFLAGS \
552                -Wall -Wstrict-prototypes -Wmissing-declarations \
553                -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
554fi
555
556# Use reentrant functions
557CFLAGS="$CFLAGS -D_REENTRANT"
558
559dnl *****************************
560dnl *** link proxy statically ***
561dnl *****************************
562AC_ARG_ENABLE(static-proxy,
563  [  --enable-static-proxy  Build ${SSL_PROXY_NAME} statically ])
564
565if test x"$enable_static_proxy" = xyes; then
566        LINK_STATIC="-Wl,-Bstatic"
567        LINK_DYNAMIC="-Wl,-Bdynamic"
568        FORCE_SHLIBS="dl resolv rt nsl"
569        for lib in $FORCE_SHLIBS; do
570          OPENSSL_LIBS=`echo $OPENSSL_LIBS | sed "s/-l$lib/-Wl,-Bdynamic -l$lib -Wl,-Bstatic/"`
571          GMODULE_LIBS=`echo $GMODULE_LIBS | sed "s/-l$lib/-Wl,-Bdynamic -l$lib -Wl,-Bstatic/"`
572        done
573else
574        LINK_STATIC=
575        LINK_DYNAMIC=
576fi
577
578AC_SUBST(LINK_STATIC)
579AC_SUBST(LINK_DYNAMIC)
580
581dnl *************************
582dnl *** Output Everything ***
583dnl *************************
584
585AC_OUTPUT([
586        soup-config
587        soup.pc
588        soup.spec
589        Makefile
590        docs/Makefile
591        docs/reference/Makefile
592        src/Makefile
593        src/libsoup/Makefile
594        src/libsoup-apache/Makefile
595        src/libwsdl/Makefile
596        src/soup-httpd/Makefile
597        src/soup-ssl-proxy/Makefile
598        src/soup-wsdl/Makefile
599        ])
600
601echo "
602
603Configuration:
604
605  Source code location:         ${srcdir}
606  Compiler:                     ${CC}
607  Build flags:                  ${CFLAGS} ${SOUP_DEBUG_FLAGS}
608
609  glib 2.0:                     ${enable_glib2}
610
611  Static SSL Proxy:             ${enable_static_proxy:-no}
612  SSL Proxy Name:               ${SSL_PROXY_NAME}
613
614  OpenSSL support:              ${enable_openssl}
615  Mozilla NSS support:          ${enable_nss}
616
617  Apache module support:        ${enable_apache}
618
619"
Note: See TracBrowser for help on using the repository browser.