BUILD: Always show manual and manpage build info, remove AC_SUBST dups
[elinks.git] / configure.in
blobf15c6b8ab20697835d171a113e91d498eadbdb54
1 dnl Process this file with autoconf to produce a configure script.
3 AC_PREREQ(2.13)
4 AC_INIT(src/main/main.c)
5 AC_CONFIG_AUX_DIR(config)
7 PACKAGE=elinks
8 VERSION=0.11.2.GIT
9 AC_SUBST(PACKAGE)
10 AC_SUBST(VERSION)
11 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version])
12 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Package version])
13 AC_CONFIG_HEADERS(config.h)
15 AC_CHECK_PROG(ACLOCAL,[aclocal],[aclocal],[config/missing aclocal])
16 AC_CHECK_PROG(AUTOCONF,[autoconf],[autoconf],[config/missing autoconf])
17 AC_CHECK_PROG(AUTOHEADER,[autoheader],[autoheader],[config/missing autoheader])
19 MAKE=
21 for make in gnumake gmake make false; do
22         if test "x$MAKE" = x; then
23                 AC_PATH_PROGS(MAKE, "$make")
24         fi
25 done
27 builddir="`pwd`"
29 # Cleanup if we are configuring with a previous build in the tree
30 if test -e Makefile.config; then
31         AC_MSG_CHECKING([for previous build to clean])
32         "$MAKE" -C "$builddir/src" cleanall >/dev/null 2>/dev/null
33         AC_MSG_RESULT(done)
36 dnl ===================================================================
37 dnl Load feature configuration file and start logging features.
38 dnl ===================================================================
40 features="features.conf"
41 AC_CHECK_FILE("$srcdir/$features", [ . $srcdir/$features ])
42 AC_CHECK_FILE("$builddir/$features", [ . $builddir/$features ])
43 echo "Feature summary:" > features.log
45 dnl ===================================================================
46 dnl Checks for programs.
47 dnl ===================================================================
49 AC_PROG_CC
50 AC_PROG_AWK
51 AC_PATH_PROGS(AWK, "$AWK")
52 AC_PROG_RANLIB
53 AC_PROG_INSTALL
55 AC_PATH_PROGS(CG_COMMIT_ID, "cg-commit-id")
56 AC_PATH_PROGS(SPARSE, "sparse")
58 CONFIG_ASCIIDOC="no"
59 CONFIG_POD2HTML="no"
60 CONFIG_XMLTO="no"
61 CONFIG_JW="no"
63 if test "x$CONFIG_DOC" != xno; then
64         AC_PATH_PROGS(ASCIIDOC, "asciidoc")
65         if test "x$ASCIIDOC" != "x"; then
66                 EL_CONFIG(CONFIG_ASCIIDOC, [AsciiDoc])
67                 EL_CONFIG(MANUAL_ASCIIDOC, [HTML (one file)])
68                 EL_CONFIG(MAN_ASCIIDOC, [HTML])
70                 echo > config.asciidoc-unsafe.txt
71                 if "$ASCIIDOC" --unsafe config.asciidoc-unsafe.txt >&/dev/null; then
72                         ASCIIDOC_FLAGS=--unsafe
73                 fi
74                 rm config.asciidoc-unsafe.*
75         fi
77         AC_PATH_PROGS(XMLTO, "xmlto")
78         if test "x$XMLTO" != "x"; then
79                 EL_CONFIG(CONFIG_XMLTO, [XmlTo])
80                 EL_CONFIG(MANUAL_XMLTO, [HTML (multiple files)])
81                 EL_CONFIG(MAN_XMLTO, [man (groff)])
82         fi
84         AC_PATH_PROGS(JW, "jw")
85         if test "x$JW" != "x"; then
86                 EL_CONFIG(CONFIG_JW, [JadeWrapper])
87                 EL_CONFIG(MANUAL_JW, [PDF])
88         fi
90         AC_PATH_PROGS(POD2HTML, "pod2html")
91         if test "x$POD2HTML" != "x"; then
92                 EL_CONFIG(CONFIG_POD2HTML, [Pod2HTML])
93         fi
96 AC_SUBST(ASCIIDOC_FLAGS)
97 AC_SUBST(CONFIG_ASCIIDOC)
98 AC_SUBST(CONFIG_POD2HTML)
99 AC_SUBST(CONFIG_XMLTO)
100 AC_SUBST(CONFIG_JW)
102 EL_CONFIG_DEPENDS(CONFIG_DOC, [CONFIG_ASCIIDOC CONFIG_XMLTO CONFIG_JW CONFIG_POD2HTML], [Documentation Tools])
103 EL_CONFIG_DEPENDS(CONFIG_MANUAL, [MANUAL_ASCIIDOC MANUAL_XMLTO MANUAL_JW], [Manual Formats])
104 EL_CONFIG_DEPENDS(CONFIG_MANPAGE, [MAN_ASCIIDOC MAN_XMLTO], [Man Page Formats])
106 dnl gcc specific options (to be continued at the bottom of configure)
107 if test "x$ac_cv_prog_gcc" = "xyes"; then
108   dnl We want to see all warnings and live with none.
109   dnl We can't set up -Werror here as there may be some warnings in test
110   dnl suite of configure, and we don't want to fail them.
111   CFLAGS="$CFLAGS -Wall"
114 dnl ===================================================================
115 dnl Checks for special OSes.
116 dnl ===================================================================
118 dnl EL_CHECK_COMPILER_MACRO(define, name, flagname)
119 AC_DEFUN([EL_CHECK_COMPILER_MACROS],
121         AC_MSG_CHECKING([for $2])
123         for flag in $3; do
124                 AC_TRY_COMPILE(, [#ifndef $flag
125 kill me!
126 #endif ], $1=yes, $1=no)
127                 if test "[$]$1" = yes; then
128                         EL_CONFIG([$1], [$2])
129                         break
130                 fi
131         done
133         AC_MSG_RESULT([$]$1)
136 EL_CHECK_COMPILER_MACROS(CONFIG_BEOS, [BEOS], [__BEOS__])
137 AC_SUBST(CONFIG_BEOS)
139 EL_CHECK_COMPILER_MACROS(CONFIG_RISCOS, [RISCOS], [__riscos__])
140 AC_SUBST(CONFIG_RISCOS)
142 EL_CHECK_COMPILER_MACROS(CONFIG_WIN32, [WIN32], [_WIN32 __WIN32__])
143 AC_SUBST(CONFIG_WIN32)
145 EL_CHECK_COMPILER_MACROS(CONFIG_OS2, [EMX], [__EMX__])
146 AC_SUBST(CONFIG_OS2)
147 test "$CONFIG_OS2" = yes && LDFLAGS=`echo "$LDFLAGS" | sed "s/-Zexe//g"`
149 AC_MSG_CHECKING([for UNIX])
150 dnl FIXME: some depend kind of mechanism
151 if test "$CONFIG_BEOS" = no && \
152    test "$CONFIG_RISCOS" = no && \
153    test "$CONFIG_WIN32" = no && \
154    test "$CONFIG_OS2" = no; then
155         EL_CONFIG(CONFIG_UNIX, [UNIX])
156 else
157         CONFIG_UNIX=no
159 AC_MSG_RESULT($CONFIG_UNIX)
160 AC_SUBST(CONFIG_UNIX)
162 dnl ===================================================================
163 dnl Checks for header files.
164 dnl ===================================================================
166 AC_HEADER_DIRENT
167 AC_HEADER_STDC
168 AC_HEADER_SYS_WAIT
169 AC_HEADER_TIME
171 AC_CHECK_HEADERS(fcntl.h limits.h time.h unistd.h)
172 AC_CHECK_HEADERS(sigaction.h)
173 AC_CHECK_HEADERS(arpa/inet.h)
174 AC_CHECK_HEADERS(netinet/in_systm.h netinet/in_system.h netinet/ip.h)
175 AC_CHECK_HEADERS(net/if.h netdb.h netinet/in.h netinet/in6_var.h)
176 AC_CHECK_HEADERS(ifaddrs.h)
177 AC_CHECK_HEADERS(sys/cygwin.h io.h)
178 AC_CHECK_HEADERS(sys/fmutex.h)
179 AC_CHECK_HEADERS(sys/ioctl.h sys/sockio.h)
180 AC_CHECK_HEADERS(sys/resource.h)
181 AC_CHECK_HEADERS(sys/select.h)
182 AC_CHECK_HEADERS(sys/signal.h)
183 AC_CHECK_HEADERS(sys/socket.h)
184 AC_CHECK_HEADERS(sys/time.h)
185 AC_CHECK_HEADERS(sys/utsname.h)
186 AC_CHECK_HEADERS(stdint.h inttypes.h)
187 AC_CHECK_HEADERS(locale.h pwd.h)
188 AC_CHECK_HEADERS(termios.h)
191 AC_CHECK_HEADERS(sys/un.h,
192         [CONFIG_INTERLINK=yes
193          EL_CONFIG([CONFIG_INTERLINK], [interlinking])],
194         [CONFIG_INTERLINK=no])
195 AC_SUBST(CONFIG_INTERLINK)
197 dnl ===================================================================
198 dnl Checks for typedefs, structures, and compiler characteristics.
199 dnl ===================================================================
201 AC_STRUCT_TM
202 AC_C_CONST
203 AC_C_INLINE
204 EL_CHECK_CODE(typeof, HAVE_TYPEOF, [], [int a; typeof(a) b;])
206 AC_SYS_LARGEFILE
207 AC_TYPE_SIZE_T
208 AC_TYPE_OFF_T
209 EL_CHECK_TYPE(ssize_t, int)
210 EL_CHECK_SYS_TYPE(long long, HAVE_LONG_LONG, [])
211 EL_CHECK_SYS_TYPE(off_t, HAVE_OFF_T, [])
212 EL_CHECK_INT_TYPE(int32_t, HAVE_INT32_T)
213 EL_CHECK_INT_TYPE(uint32_t, HAVE_UINT32_T)
214 EL_CHECK_INT_TYPE(uint16_t, HAVE_UINT16_T)
216 AC_CHECK_SIZEOF(char, 1)
217 AC_CHECK_SIZEOF(short, 2)
218 AC_CHECK_SIZEOF(int, 4)
219 AC_CHECK_SIZEOF(long, 4)
220 test "x$HAVE_LONG_LONG" = xyes && AC_CHECK_SIZEOF(long long, 8)
221 test "x$HAVE_OFF_T" = xyes && AC_CHECK_SIZEOF(off_t, 4)
223 dnl Check for variadic macros
224 EL_CHECK_CODE([variadic macros], HAVE_VARIADIC_MACROS,
225                 [#include <stdio.h>
226                  #define a(b,c...) printf(b,##c)],
227                 [a("foo");a("%s","bar");a("%s%s","baz","quux");])
229 dnl Check for -rdynamic
230 dnl FIXME: This check doesn't work. Something to do with the compiler
231 dnl happily ignoring it and stderr not being checked for error messages.
232 AC_MSG_CHECKING([for -rdynamic])
233 LDFLAGS_X="$LDFLAGS"
234 LDFLAGS="$LDFLAGS -rdynamic"
235 AC_TRY_LINK([], [], have_rdynamic=yes, have_rdynamic=no)
236 test "$have_rdynamic" = no && LDFLAGS="$LDFLAGS_X"
237 AC_MSG_RESULT($have_rdynamic)
239 dnl ===================================================================
240 dnl Check for POSIX <regex.h>
241 dnl ===================================================================
243 EL_CHECK_SYS_TYPE(regex_t, HAVE_REGEX_H, [#include <regex.h>])
245 dnl ===================================================================
246 dnl Checks for library functions.
247 dnl ===================================================================
249 AC_PROG_GCC_TRADITIONAL
250 AC_FUNC_MEMCMP
251 AC_FUNC_MMAP
252 AC_FUNC_STRFTIME
253 AC_CHECK_FUNCS(cfmakeraw gethostbyaddr herror strerror)
254 AC_CHECK_FUNCS(popen uname access chmod alarm timegm mremap)
255 AC_CHECK_FUNCS(strcasecmp strncasecmp strcasestr strstr strchr strrchr)
256 AC_CHECK_FUNCS(memmove bcopy stpcpy strdup index isdigit mempcpy memrchr)
257 AC_CHECK_FUNCS(snprintf vsnprintf asprintf vasprintf)
258 AC_CHECK_FUNCS(getifaddrs getpwnam inet_pton inet_ntop)
259 AC_CHECK_FUNCS(fflush fsync fseeko ftello sigaction)
260 AC_CHECK_FUNCS(gettimeofday clock_gettime)
262 AC_HAVE_FUNCS(cygwin_conv_to_full_win32_path)
264 AC_CHECK_FUNCS(setenv putenv, HAVE_SETENV_OR_PUTENV=yes)
265 AC_CHECK_FUNCS(getuid, HAVE_GETUID=yes)
266 AC_CHECK_FUNCS(geteuid, HAVE_GETEUID=yes)
268 dnl These aren't probably needed now, as they are commented in links.h.
269 dnl I've no idea about their historical background, but I keep them here
270 dnl just in the case they will help later. --pasky
271 AC_CHECK_FUNCS(getpid, HAVE_GETPID=yes)
272 AC_CHECK_FUNCS(setpgid getpgid setpgrp getpgrp)
273 AC_CHECK_FUNCS(raise, HAVE_RAISE=yes)
274 AC_CHECK_FUNCS(kill, HAVE_KILL=yes)
276 if test x"$HAVE_RAISE" = x; then
277         if test x"$HAVE_KILL" = x || test x"$HAVE_GETPID" = x; then
278                 AC_ERROR([Unable to emulate raise()])
279         fi
282 AC_CACHE_CHECK([for __va_copy],el_cv_HAVE_VA_COPY,[
283 AC_TRY_LINK([#include <stdarg.h>
284 va_list ap1,ap2;], [__va_copy(ap1,ap2);],
285 el_cv_HAVE_VA_COPY=yes,el_cv_HAVE_VA_COPY=no)])
286 if test x"$el_cv_HAVE_VA_COPY" = x"yes"; then
287         EL_DEFINE(HAVE_VA_COPY, __va_copy)
290 AC_CACHE_CHECK([for sysconf(_SC_PAGE_SIZE)],el_cv_HAVE_SC_PAGE_SIZE,[
291 AC_TRY_LINK([#include <unistd.h>
292 ], [int page_size = sysconf(_SC_PAGE_SIZE);],
293 el_cv_HAVE_SC_PAGE_SIZE=yes,el_cv_HAVE_SC_PAGE_SIZE=no)])
294 if test x"$el_cv_HAVE_SC_PAGE_SIZE" = x"yes"; then
295         EL_DEFINE(HAVE_SC_PAGE_SIZE, _SC_PAGE_SIZE)
298 AC_CACHE_CHECK([for C99 vsnprintf],el_cv_HAVE_C99_VSNPRINTF,[
299 AC_TRY_RUN([
300 #include <stdio.h>
301 #include <stdarg.h>
302 #include <stdlib.h>
303 #include <string.h>
305 char buf[8];
307 int bar(char *buf, const char *format, va_list ap)
309        return vsnprintf(buf, 0, format, ap);
312 void foo(const char *format, ...) {
313        va_list ap;
314        int len;
316        va_start(ap, format);
317        len = bar(buf, format, ap);
318        va_end(ap);
319        if ((len != 6) && (len != 7)) exit(1); /* \n -> \r\n */
321        va_start(ap, format);
322        len = bar(buf, format, ap);
323        va_end(ap);
324        if ((len != 6) && (len != 7)) exit(1);
326        if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
328        exit(0);
330 main() { foo("hello\n"); }
332 el_cv_HAVE_C99_VSNPRINTF=yes,el_cv_HAVE_C99_VSNPRINTF=no,el_cv_HAVE_C99_VSNPRINTF=cross)])
333 if test x"$el_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
334         EL_DEFINE(HAVE_C99_VSNPRINTF, [C99 compliant vsnprintf()])
337 AC_CHECK_LIB(dl, dlopen) # OpenSSL and Lua frequently needs it
339 dnl ===================================================================
340 dnl Checks for libraries.
341 dnl ===================================================================
343 dnl Replace `main' with a function in -lsocket:
344 AC_CHECK_FUNC(socket, cf_result=yes, cf_result=no)
345 if test "$cf_result" = no; then
346         AC_CHECK_LIB(socket, socket)
349 AC_CHECK_FUNC(setsockopt, cf_result=yes, cf_result=no)
350 if test "$cf_result" = no; then
351         AC_CHECK_LIB(socket, setsockopt)
354 AC_CHECK_FUNC(gethostbyname, cf_result=yes, cf_result=no)
355 if test "$cf_result" = no; then
356         AC_CHECK_LIB(socket, gethostbyname, cf_result=yes, cf_result=no)
357         if test "$cf_result" = no; then
358                 AC_CHECK_LIB(nsl, gethostbyname)
359         else
360                 test -z "`echo $LIBS | grep -- -lsocket`" && LIBS="$LIBS -lsocket"
361         fi
364 dnl ===================================================================
365 dnl Checks for packaging specific options.
366 dnl ===================================================================
368 AC_ARG_WITH(xterm, [  --with-xterm            how to invoke the X terminal emulator],
369             [ if test "$withval" != no && test "$withval" != yes; then
370                 AC_DEFINE_UNQUOTED(XTERM, "$withval", [How to invoke XTerm])
371               fi ])
373 dnl ===================================================================
374 dnl Checks for a libraries, optional even if installed.
375 dnl ===================================================================
377 dnl EL_CHECK_OPTIONAL_LIBRARY(define, name, header, lib, function)
378 AC_DEFUN([EL_CHECK_OPTIONAL_LIBRARY],
380         AC_MSG_CHECKING([for $2 support])
382         if test "[$]$1" != no; then
383                 AC_MSG_RESULT(yes)
384                 EL_SAVE_FLAGS
385                 if test -n "$withval" && test -d "$withval"; then
386                         CFLAGS="$CFLAGS -I$withval/include";
387                         CPPFLAGS="$CPPFLAGS -I$withval/include";
388                         LDFLAGS="$LDFLAGS -L$withval/lib";
389                 fi
391                 AC_CHECK_HEADERS([$3], [$1=yes], [$1=no; break;])
392                 if test "[$]$1" = yes; then
393                         AC_CHECK_LIB([$4], [$5], [$1=yes], [$1=no])
394                 fi
396                 if test "[$]$1" = yes; then
397                         EL_CONFIG([$1], [$2])
398                         LIBS="$LIBS -l$4"
399                 else
400                         if test -n "[$]WITHVAL_$1" &&
401                            test "[$]WITHVAL_$1" != xno; then
402                                 AC_MSG_ERROR([$2 not found])
403                         fi
404                         EL_RESTORE_FLAGS
405                 fi
406         else
407                 AC_MSG_RESULT(disabled)
408         fi
411 dnl EL_CONFIG_OPTIONAL_LIBRARY(define, name, header, lib, function, confhelp)
412 AC_DEFUN([EL_CONFIG_OPTIONAL_LIBRARY],
414         $1=yes
415         WITHVAL_$1=
417         AC_ARG_WITH([$2], [$6], [WITHVAL_$1="[$]withval"])
418         if test "x[$]WITHVAL_$1" = xno; then $1=no; fi
420         EL_CHECK_OPTIONAL_LIBRARY([$1], [$2], [$3], [$4], [$5])
422         EL_LOG_CONFIG([$1], [$2], [])
425 EL_CONFIG_OPTIONAL_LIBRARY(CONFIG_GPM, gpm, gpm.h, gpm, Gpm_Open,
426         [  --without-gpm           disable gpm (mouse) support])
428 EL_CONFIG_OPTIONAL_LIBRARY(CONFIG_GZIP, zlib, zlib.h, z, gzdopen,
429         [  --without-zlib          disable zlib support])
431 EL_CONFIG_OPTIONAL_LIBRARY(CONFIG_BZIP2, bzlib, bzlib.h, bz2, BZ2_bzReadOpen,
432         [  --without-bzlib         disable bzlib support])
434 EL_CONFIG_OPTIONAL_LIBRARY(CONFIG_IDN, idn, idna.h, idn, stringprep_check_version,
435         [  --without-idn           disable international domain names support])
437 dnl ===================================================================
438 dnl Bookmark and XBEL support
439 dnl ===================================================================
441 EL_SAVE_FLAGS
443 EL_ARG_ENABLE(CONFIG_BOOKMARKS, bookmarks, [Bookmarks],
444               [  --disable-bookmarks     disable bookmark support])
446 # Check whether --enable-xbel or --disable-xbel was given.
447 if test "x${enable_xbel}" != xno; then
448         AC_CHECK_HEADERS(expat.h, HAVE_LIBEXPAT=yes, HAVE_LIBEXPAT=no)
450         if test "$HAVE_LIBEXPAT" = yes; then
451                 AC_CHECK_LIB(expat, XML_ParserCreate, HAVE_LIBEXPAT=yes, HAVE_LIBEXPAT=no)
452                 if test "$HAVE_LIBEXPAT" = yes; then
453                         LIBS="$LIBS -lexpat"
454                 fi
455         fi
459 EL_ARG_DEPEND(CONFIG_XBEL_BOOKMARKS, xbel, [CONFIG_BOOKMARKS:yes HAVE_LIBEXPAT:yes],
460               [XBEL bookmarks],
461               [  --disable-xbel          disable XBEL bookmark support (requires expat)])
463 if test "$CONFIG_XBEL_BOOKMARKS" != yes; then
464         EL_RESTORE_FLAGS
467 dnl ===================================================================
468 dnl Checks for BSD sysmouse
469 dnl ===================================================================
471 HAVE_SYSMOUSE_HEADER="no"
473 # Either of these header files provides the (same) sysmouse interface
474 AC_CHECK_HEADERS(sys/consio.h machine/console.h, [HAVE_SYSMOUSE_HEADER="yes"])
476 dnl ===================================================================
477 dnl Checks for OS/2
478 dnl ===================================================================
480 if test "$CONFIG_OS2" = yes; then
481         EL_CONFIG_OS2
484 dnl ===================================================================
485 dnl Checks for Win32
486 dnl ===================================================================
488 if test "$CONFIG_WIN32" = yes; then
489         EL_CONFIG_WIN32
492 dnl ===================================================================
493 dnl Check for SpiderMonkey, optional even if installed.
494 dnl ===================================================================
496 AC_ARG_WITH(spidermonkey, [  --without-spidermonkey  disable SpiderMonkey Mozilla JavaScript engine support],
497             [if test "$withval" = no; then disable_spidermonkey=yes; fi])
498 AC_MSG_CHECKING([for SpiderMonkey])
500 EL_SAVE_FLAGS
501 cf_result=no
503 if test -z "$disable_spidermonkey"; then
504         if test ! -d "$withval"; then
505                 withval="";
506         fi
507         for spidermonkeydir in "$withval" "" /usr /usr/local /opt/spidermonkey /opt/js; do
508                 for spidermonkeyinclude in "/include" "/include/js" "/include/smjs"; do
509                         for spidermonkeylib in js smjs; do
510                                 if test "$cf_result" = no; then
511                                         SPIDERMONKEY_LIBS="-l$spidermonkeylib"
513                                         if test ! -z "$spidermonkeydir"; then
514                                                 SPIDERMONKEY_LIBS="-L$spidermonkeydir/lib $SPIDERMONKEY_LIBS"
515                                                 SPIDERMONKEY_CFLAGS="-I$spidermonkeydir$spidermonkeyinclude"
516                                         fi
518                                         LIBS="$SPIDERMONKEY_LIBS $LIBS_X"
519                                         CFLAGS="$CFLAGS_X $SPIDERMONKEY_CFLAGS"
520                                         CPPFLAGS="$CPPFLAGS_X $SPIDERMONKEY_CFLAGS"
522                                         AC_TRY_LINK([#define XP_UNIX
523                                                      #include <jsapi.h>],
524                                                      [JS_GetImplementationVersion()],
525                                                      cf_result=yes, cf_result=no)
526                                 fi
527                         done
528                 done
529         done
532 AC_MSG_RESULT($cf_result)
534 if test "$cf_result" != yes; then
535         EL_RESTORE_FLAGS
536 else
537         EL_CONFIG(CONFIG_SPIDERMONKEY, [SpiderMonkey])
539         CFLAGS="$CFLAGS_X"
540         AC_SUBST(SPIDERMONKEY_LIBS)
541         AC_SUBST(SPIDERMONKEY_CFLAGS)
544 AC_SUBST(CONFIG_SPIDERMONKEY)
546 EL_CONFIG_DEPENDS(CONFIG_ECMASCRIPT, [CONFIG_SPIDERMONKEY], [ECMAScript (JavaScript)])
549 dnl ===================================================================
550 dnl Check for Guile, optional even if installed.
551 dnl ===================================================================
553 enable_guile="no";
555 AC_ARG_WITH(guile, [  --with-guile            enable Guile support],
556             [ if test "x$withval" != xno; then enable_guile=yes; fi ])
558 # The following is probably bad, ugly and so on. Stolen from Guile's (1.4)
559 # GUILE_FLAGS but I really don't want to require people to have Guile in order
560 # to compile CVS. Also, the macro seems to be really stupid regarding searching
561 # for Guile in $PATH etc. --pasky
563 AC_MSG_CHECKING([for Guile])
565 if test "$enable_guile" = "yes"; then
566         AC_MSG_RESULT(yes);
567         ## Based on the GUILE_FLAGS macro.
569         if test -d "$withval"; then
570                 GUILE_PATH="$withval:$PATH"
571         else
572                 GUILE_PATH="$PATH"
573         fi
575         AC_PATH_PROG(GUILE_CONFIG, guile-config, no, $GUILE_PATH)
577         ## First, let's just see if we can find Guile at all.
578         if test "$GUILE_CONFIG" != no; then
579                 cf_result="yes";
581                 GUILE_LIBS="`guile-config link`"
582                 GUILE_CFLAGS="`guile-config compile`"
583                 LIBS="$GUILE_LIBS $LIBS"
584                 CPPFLAGS="$CPPFLAGS $GUILE_CFLAGS"
585                 EL_CONFIG(CONFIG_GUILE, [Guile])
586                 AC_SUBST(GUILE_CFLAGS)
587                 cat <<EOF
588 ***********************************************************************
589 The Guile support is incomplete and not so well integrated to ELinks
590 yet. That means, ie., that you have no Guile console and there might
591 not be all the necessary hooks. Also, the Guile interface is not too
592 well tested (success stories heartily welcomed!).  See
593 src/scripting/guile/README for further details and hints.
594 ***********************************************************************
596         else
597                 if test -n "$withval" && test "x$withval" != xno; then
598                         AC_MSG_ERROR([Guile not found])
599                 else
600                         AC_MSG_WARN([Guile support disabled])
601                 fi
602         fi
603 else
604         AC_MSG_RESULT(no);
607 dnl ===================================================================
608 dnl Check for Perl
609 dnl ===================================================================
610 enable_perl="no";
612 AC_ARG_WITH(perl, [  --with-perl             enable Perl support],
613             [
614 if test "$withval" = yes; then
615         # FIXME: If withval is a valid directory append it to PATH
616         # so that you can specify one of several perl installations.
617         withval="";
618         enable_perl=yes;
620             ])
622 AC_MSG_CHECKING([for Perl])
624 cf_result=no
626 EL_SAVE_FLAGS
628 if test "$enable_perl" = "yes"; then
629         PERL_LIBS="`perl -MExtUtils::Embed -e ldopts`"
630         PERL_CFLAGS="`perl -MExtUtils::Embed -e ccopts`"
631         LIBS="$PERL_LIBS $LIBS"
632         CFLAGS="$PERL_CFLAGS $CFLAGS"
633         CPPFLAGS="$CPPFLAGS $PERL_CFLAGS"
634         AC_TRY_LINK([
635 #include <EXTERN.h>
636 #include <perl.h>
637 #include <perlapi.h>
639                     [PerlInterpreter *my_perl = perl_alloc();],
640                     cf_result=yes, cf_result=no)
643 if test "$cf_result" != "yes"; then
644         EL_RESTORE_FLAGS
645 else
646         EL_CONFIG(CONFIG_PERL, [Perl])
648         CFLAGS="$CFLAGS_X"
649         AC_SUBST(PERL_LIBS)
650         AC_SUBST(PERL_CFLAGS)
653 if test "$cf_result"; then AC_MSG_RESULT($cf_result); fi
654 dnl ===================================================================
655 dnl Check for Python
656 dnl ===================================================================
657 enable_python="no";
659 AC_ARG_WITH(python, [  --with-python           enable Python support],
660             [
661 if test "$withval" = yes; then
662         # FIXME: If withval is a valid directory append it to PATH
663         # so that you can specify one of several Python installations.
664         withval="";
665         enable_python=yes;
666         cat <<EOF
667 ***********************************************************************
668 The Python support is incomplete and not so well integrated to ELinks
669 yet. That means, ie., that you have no Python console and there might
670 not be all the necessary hooks. Also, the Python interface is not too
671 well tested (success stories heartily welcomed!).
672 ***********************************************************************
675             ])
677 AC_MSG_CHECKING([for Python])
679 cf_result=no
681 EL_SAVE_FLAGS
683 if test "$enable_python" = "yes"; then
684         PYTHON_LIBS="-lpython"
685         PYTHON_CFLAGS="-I`python -c 'from distutils import sysconfig; print sysconfig.get_python_inc()' 2> /dev/null`"
686         LIBS="$PYTHON_LIBS $LIBS"
687         CFLAGS="$PYTHON_CFLAGS $CFLAGS"
688         CPPFLAGS="$CPPFLAGS $PYTHON_CFLAGS"
689         AC_TRY_LINK([
690 #include <Python.h>
692                     [Py_Initialize();],
693                     cf_result=yes, cf_result=no)
696 if test "$cf_result" != "yes"; then
697         EL_RESTORE_FLAGS
698 else
699         EL_CONFIG(CONFIG_PYTHON, [Python])
701         CFLAGS="$CFLAGS_X"
702         AC_SUBST(PYTHON_LIBS)
703         AC_SUBST(PYTHON_CFLAGS)
706 if test "$cf_result"; then AC_MSG_RESULT($cf_result); fi
709 dnl ===================================================================
710 dnl Check for Lua, optional even if installed.
711 dnl ===================================================================
713 dnl Do this the long way, as FreeBSD reportedly needs -L<dir> for
714 dnl anything other than /usr/lib, and Lua is very often in /usr/local/lib.
716 AC_ARG_WITH(lua, [  --without-lua           disable Lua support],
717             [if test "$withval" = no; then disable_lua=yes; fi])
718 AC_MSG_CHECKING([for Lua])
720 EL_SAVE_FLAGS
721 cf_result=no
723 if test -z "$disable_lua"; then
724         if test ! -d "$withval"; then
725                 withval="";
726         fi
727         for luadir in "$withval" "" /usr /usr/local; do
728                 for suffix in "" 50 51; do
729                         if test "$cf_result" = no; then
730                                 LUA_LIBS="-llua$suffix -llualib$suffix -lm"
732                                 if test ! -z "$luadir"; then
733                                         LUA_LIBS="-L$luadir/lib $LUA_LIBS"
734                                         LUA_CFLAGS="-I$luadir/include -I$luadir/include/lua$suffix"
735                                 fi
737                                 LIBS="$LUA_LIBS $LIBS_X"
738                                 CFLAGS="$CFLAGS_X $LUA_CFLAGS"
739                                 CPPFLAGS="$CPPFLAGS_X $LUA_CFLAGS"
741                                 # Check that it is a compatible Lua version
742                                 AC_TRY_LINK([   #include <lua.h>
743                                                 #include <lualib.h>],
744                                             [   lua_State *L = lua_open();
745                                                 lua_baselibopen(L);
746                                                 lua_mathlibopen(L);
747                                                 lua_strlibopen(L);
748                                                 lua_tablibopen(L);
749                                                 lua_pushboolean(L, 1);
750                                                 lua_close(L);],
751                                             cf_result=yes, cf_result=no)
752                         fi
753                 done
754         done
757 AC_MSG_RESULT($cf_result)
759 if test "$cf_result" != yes; then
760         EL_RESTORE_FLAGS
761 else
762         EL_CONFIG(CONFIG_LUA, [Lua])
763         AC_CHECK_HEADERS(lauxlib.h)
765         CFLAGS="$CFLAGS_X"
766         AC_SUBST(LUA_LIBS)
767         AC_SUBST(LUA_CFLAGS)
771 dnl ===================================================================
772 dnl Check for Ruby, optional even if installed.
773 dnl ===================================================================
775 EL_CONFIG_RUBY
777 dnl ===================================================================
778 dnl Optional Spidermonkey-based ECMAScript browser scripting
779 dnl ===================================================================
781 AC_ARG_ENABLE(sm-scripting,
782               [  --disable-sm-scripting  ECMAScript browser scripting (requires Spidermonkey)],
783               [if test "$enableval" != no; then enableval="yes"; fi
784                CONFIG_SM_SCRIPTING="$enableval";])
786 if test "x$CONFIG_SPIDERMONKEY" = xyes &&
787    test "x$CONFIG_SM_SCRIPTING" = xyes; then
788         EL_CONFIG(CONFIG_SM_SCRIPTING, [SpiderMonkey])
789 else
790         CONFIG_SM_SCRIPTING=no
793 dnl ===================================================================
794 dnl Setup global scripting
795 dnl ===================================================================
797 EL_CONFIG_DEPENDS(CONFIG_SCRIPTING, [CONFIG_GUILE CONFIG_LUA CONFIG_PERL CONFIG_PYTHON CONFIG_RUBY CONFIG_SM_SCRIPTING], [Browser scripting])
798 AC_SUBST(CONFIG_GUILE)
799 AC_SUBST(CONFIG_LUA)
800 AC_SUBST(CONFIG_PERL)
801 AC_SUBST(CONFIG_PYTHON)
802 AC_SUBST(CONFIG_RUBY)
803 AC_SUBST(CONFIG_SM_SCRIPTING)
804 AC_SUBST(CONFIG_SCRIPTING)
807 dnl ===================================================================
808 dnl Check for SSL support.
809 dnl ===================================================================
811 dnl We by default use OpenSSL, and we always prefer it. However, when GNUTLS
812 dnl is enabled, we won't try to use OpenSSL anymore.
814 dnl For wiping SSL hooks..
815 #ifdef CONFIG_SSL
817 disable_openssl=""
818 disable_gnutls=""
819 enable_gnutls=""
821 AC_ARG_WITH(gnutls, [  --without-gnutls        disable GNUTLS SSL support],
822             [if test "$with_gnutls" = no;  then disable_gnutls=yes; fi])
823 AC_ARG_WITH(gnutls, [  --with-gnutls[=DIR]     enable GNUTLS SSL support],
824             [if test "$with_gnutls" != no;  then enable_gnutls=yes; fi])
825 gnutls_withval="$withval"
827 if test "$enable_gnutls" = yes; then
828         disable_openssl=yes;
831 AC_ARG_WITH(openssl, [  --without-openssl       disable OpenSSL support],
832             [if test "$with_openssl" = no;  then disable_openssl=yes; fi])
833 AC_ARG_WITH(openssl, [  --with-openssl[=DIR]    enable OpenSSL support (default)])
834 openssl_withval="$withval"
836 dnl ---- OpenSSL
838 AC_MSG_CHECKING([for OpenSSL])
840 EL_SAVE_FLAGS
841 cf_result="no"
843 if test "$disable_openssl" = yes; then
844         cf_result="not used"
845 else
846         for ssldir in "$openssl_withval" "" /usr /usr/local/openssl \
847                          /usr/lib/openssl /usr/local/ssl \
848                          /usr/local/www /usr/lib/ssl /usr/local \
849                          /usr/pkg /opt /opt/openssl; do
850                 if test "$cf_result" = no; then
851                         if test -d "$ssldir"; then
852                                 OPENSSL_CFLAGS="-I$ssldir/include"
853                                 LIBS="-L$ssldir/lib -lssl -lcrypto $LIBS_X"
854                                 CFLAGS="$CFLAGS_X $OPENSSL_CFLAGS"
855                                 CPPFLAGS="$CPPFLAGS_X $OPENSSL_CFLAGS"
856 #                               # FIXME: This created serious portability problems. --pasky
857 #                               if test "$CC" == "gcc"; then
858 #                                       # I'm not sure about compatibility here. --pasky
859 #                                       LIBS="$LIBS -R$ssldir/lib"
860 #                               fi
861                         else
862                                 LIBS="-lssl -lcrypto $LIBS_X"
863                         fi
864                         AC_TRY_LINK([#include <openssl/ssl.h>],
865                                     [OpenSSL_add_all_algorithms()],
866                                     cf_result=yes, cf_result=no)
867                         if test "$cf_result" != yes; then
868                                 AC_TRY_LINK([#include <openssl/ssl.h>],
869                                             [SSLeay_add_ssl_algorithms()],
870                                             cf_result=yes, cf_result=no)
871                         fi
872                 fi
873         done
875         if test "$cf_result" != yes; then
876                 if test -n "$openssl_withval" && test "x$openssl_withval" != xno; then
877                         AC_MSG_ERROR([OpenSSL not found])
878                 fi
879                 EL_RESTORE_FLAGS
880         else
881                 EL_CONFIG(CONFIG_OPENSSL, [OpenSSL])
883                 CFLAGS="$CFLAGS_X"
884                 AC_SUBST(OPENSSL_CFLAGS)
885         fi
888 AC_MSG_RESULT($cf_result)
890 CONFIG_GNUTLS_OPENSSL_COMPAT=no
891 dnl ---- GNU TLS
892 dnl We can't have AC_MSG_CHECKING here, because AC_PATH_PROG prints its own and
893 dnl it looks ugly then.
895 if test "$cf_result" = yes; then
896         cf_result="not used"
898 else
899         EL_SAVE_FLAGS
900         cf_result="no"
902         if test -z "$disable_gnutls"; then
903                 # Sure, we maybe _could_ use their macro, but how to ensure
904                 # that the ./configure script won't fail if the macro won't be
905                 # found..? :( --pasky
907                 GNUTLS_PATH="$PATH:/usr/local/gnutls:/opt:/opt/gnutls"
909                 if test -d "$gnutls_withval"; then
910                         GNUTLS_PATH="$gnutls_withval:$GNUTLS_PATH"
911                 fi
913                 AC_PATH_PROG(LIBGNUTLS_CONFIG, libgnutls-config, no, $GNUTLS_PATH)
915                 if test "$LIBGNUTLS_CONFIG" = "no" ; then
916                         cf_result=no
917                 else
918                         GNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG --cflags`
919                         GNUTLS_LIBS=`$LIBGNUTLS_CONFIG --libs`
921                         LIBS="$GNUTLS_LIBS $LIBS_X"
922                         CFLAGS="$CFLAGS_X $GNUTLS_CFLAGS"
923                         CPPFLAGS="$CPPFLAGS_X $GNUTLS_CFLAGS"
925                         # Verify if it's really usable.  gnutls_session was
926                         # renamed to gnutls_session_t before GNU TLS 1.2.0
927                         # (on 2004-06-13); ELinks now requires this.
928                         AC_TRY_LINK([#include <gnutls/gnutls.h>],
929                                     [gnutls_session_t dummy;
930                                      gnutls_check_version(NULL)],
931                                     cf_result=yes, cf_result=no)
932                 fi
934                 if test "$cf_result" = yes; then
935                         EL_CONFIG(CONFIG_GNUTLS, [GNUTLS])
937                         CFLAGS="$CFLAGS_X"
938                         AC_SUBST(GNUTLS_CFLAGS)
940                         # Verify if the MD5 compatibility layer is usable.
941                         CONFIG_GNUTLS_OPENSSL_COMPAT=yes
942                         EL_CHECK_OPTIONAL_LIBRARY(CONFIG_GNUTLS_OPENSSL_COMPAT,
943                                                   [GNU TLS OpenSSL compatibility],
944                                                   gnutls/openssl.h, gnutls-openssl,
945                                                   MD5_Init)
946                 else
947                         if test -n "$gnutls_withval" && test "x$gnutls_withval" != xno; then
948                                 AC_MSG_ERROR([GNUTLS (1.2 or later) not found.  ELinks no longer supports GNUTLS 1.1.])
949                         fi
950                         EL_RESTORE_FLAGS
951                 fi
952         fi
955 AC_MSG_CHECKING([for GNU TLS (1.2 or later)])
956 AC_MSG_RESULT($cf_result)
958 dnl Final SSL setup
960 EL_CONFIG_DEPENDS(CONFIG_SSL, [CONFIG_OPENSSL CONFIG_GNUTLS], [SSL])
961 AC_SUBST(CONFIG_GNUTLS_OPENSSL_COMPAT)
962 AC_SUBST(CONFIG_OPENSSL)
963 AC_SUBST(CONFIG_GNUTLS)
965 #endif
967 AC_MSG_CHECKING([whether to be or not to be])
968 AC_MSG_RESULT([needs to be determined experimentally])
970 dnl ===================================================================
971 dnl Check for IPv6 support and related functions.
972 dnl ===================================================================
974 EL_CHECK_NET_TYPE(struct sockaddr_storage, HAVE_SA_STORAGE, [])
975 EL_CHECK_NET_TYPE(struct sockaddr_in6, HAVE_SA_IN6, [#include <netinet/in.h>])
976 EL_CHECK_NET_TYPE(struct addrinfo, HAVE_ADDRINFO, [#include <netdb.h>])
978 AC_CHECK_FUNC(getaddrinfo, HAVE_GETADDRINFO=yes, HAVE_GETADDRINFO=no)
979 if test "$HAVE_GETADDRINFO" != yes; then
980         AC_CHECK_LIB(inet6, getaddrinfo, HAVE_GETADDRINFO=yes, HAVE_GETADDRINFO=no)
981         if test "$HAVE_GETADDRINFO" = yes; then
982                 LIBS="$LIBS -linet6"
983         fi
987 dnl ===================================================================
988 dnl Checking for X11 (window title restoring).
989 dnl ===================================================================
991 AC_PATH_X
992 if test x"$no_x" != xyes; then
993         if test -n "$x_includes"; then
994                 X_CFLAGS="-I$x_includes"
995                 CPPFLAGS="$CPPFLAGS -I$x_includes"
996         fi
997         if test -n "$x_libraries"; then
998                 LDFLAGS="$LDFLAGS -L$x_libraries"
999         fi
1000         LIBS="-lX11 $LIBS"
1001         EL_DEFINE(HAVE_X11, [X11 for restoring window titles])
1002         AC_SUBST(X_CFLAGS)
1006 dnl ===================================================================
1007 dnl Backtraces displaying support.
1008 dnl ===================================================================
1010 AC_CHECK_HEADERS(execinfo.h, HAVE_EXECINFO=yes, HAVE_EXECINFO=no)
1011 # possible checks for other system-specific means go here
1014 dnl ===================================================================
1015 dnl SMB protocol support.
1016 dnl ===================================================================
1018 AC_CHECK_PROG(HAVE_SMBCLIENT, smbclient, yes, no)
1021 dnl ===================================================================
1022 dnl Gettext grey zone. Beware.
1023 dnl ===================================================================
1025 ALL_LINGUAS="be bg ca cs da de el es et fi fr gl hr hu id is it lt nl nb pl pt pt_BR ro ru sk sr sv tr uk"
1027 AM_GNU_GETTEXT
1029 dnl AC_MSG_CHECKING([how many characters your English alphabet has])
1030 dnl # f33r d4 l33t... I hope it's portable. :)
1031 dnl cf_result=$((48#z - 48#a + 1));
1032 dnl AC_MSG_RESULT($cf_result)
1035 dnl ===================================================================
1036 dnl Compile-time features control
1037 dnl ===================================================================
1039 EL_ARG_ENABLE(CONFIG_COOKIES, cookies, [Cookies],
1040               [  --disable-cookies       disable cookie support])
1042 EL_ARG_ENABLE(CONFIG_FORMHIST, formhist, [Form history],
1043               [  --disable-formhist      disable form history support])
1045 EL_ARG_ENABLE(CONFIG_GLOBHIST, globhist, [Global history],
1046               [  --disable-globhist      disable global history support])
1049 EL_ARG_ENABLE(CONFIG_MAILCAP, mailcap, [Mailcap],
1050               [  --disable-mailcap       disable mailcap support])
1052 EL_ARG_ENABLE(CONFIG_MIMETYPES, mimetypes, [Mimetypes files],
1053               [  --disable-mimetypes     disable mimetypes files support])
1056 EL_ARG_DEPEND(CONFIG_IPV6, ipv6,
1057               [HAVE_SA_STORAGE:yes HAVE_SA_IN6:yes HAVE_ADDRINFO:yes HAVE_GETADDRINFO:yes],
1058               [IPv6],
1059               [  --disable-ipv6          disable IPv6 support])
1061 EL_ARG_ENABLE(CONFIG_BITTORRENT, bittorrent, [BitTorrent protocol],
1062               [  --enable-bittorrent     enable BitTorrent protocol support])
1064 EL_ARG_ENABLE(CONFIG_DATA, data, [Data protocol],
1065               [  --disable-data          disable data protocol support])
1067 EL_ARG_ENABLE(CONFIG_URI_REWRITE, uri-rewrite, [URI rewriting],
1068               [  --disable-uri-rewrite   disable URI rewrite support])
1070 EL_ARG_DEPEND(CONFIG_CGI, cgi, [HAVE_SETENV_OR_PUTENV:yes], [Local CGI],
1071               [  --enable-cgi            enable local CGI support])
1073 EL_ARG_ENABLE(CONFIG_FINGER, finger, [Finger protocol],
1074               [  --enable-finger         enable finger protocol support])
1076 dnl ===================================================================
1077 dnl FSP protocol
1078 dnl ===================================================================
1079 EL_SAVE_FLAGS
1081 if test "x${enable_fsp}" != xno; then
1082         AC_CHECK_HEADERS(fsplib.h, HAVE_FSPLIB=yes, HAVE_FSPLIB=no)
1084         if test "$HAVE_FSPLIB" = yes; then
1085                 AC_CHECK_LIB(fsplib, fsp_open_session, HAVE_FSPLIB=yes, HAVE_FSPLIB=no)
1086                 if test "$HAVE_FSPLIB" = yes; then
1087                         LIBS="$LIBS -lfsplib"
1088                 else
1089                         AC_CHECK_LIB(fsp, fsp_open_session, HAVE_FSPLIB=yes, HAVE_FSPLIB=no)
1090                         if test "$HAVE_FSPLIB" = yes; then
1091                                 LIBS="$LIBS -lfsp"
1092                         fi
1093                 fi
1094         fi
1097 EL_ARG_DEPEND(CONFIG_FSP, fsp, [HAVE_FSPLIB:yes], [FSP protocol],
1098               [  --enable-fsp            enable FSP protocol support])
1100 if test "x$CONFIG_FSP" = xno; then
1101         EL_RESTORE_FLAGS
1104 EL_ARG_ENABLE(CONFIG_FTP, ftp, [FTP protocol],
1105               [  --disable-ftp           disable ftp protocol support])
1107 EL_ARG_ENABLE(CONFIG_GOPHER, gopher, [Gopher protocol],
1108               [  --enable-gopher         enable gopher protocol support])
1110 EL_ARG_ENABLE(CONFIG_NNTP, nntp, [NNTP protocol],
1111               [  --enable-nntp           enable nntp protocol support])
1113 dnl Force disable SMB before EL_ARG_DEPEND so that it logs the correct value.
1114 if test "${enable_smb-no}" != no || test "${CONFIG_SMB-no}" != no; then
1115   AC_MSG_WARN([Forcing --disable-smb because of vulnerability CVE-2006-5925.
1116 If you want to use SMB, please vote for bug 844 or post a patch.])
1118 enable_smb=no
1119 CONFIG_SMB=no
1120 EL_ARG_DEPEND(CONFIG_SMB, smb, [HAVE_SMBCLIENT:yes], [SMB protocol],
1121               [  --enable-smb            not currently allowed])
1122 dnl EL_ARG_DEPEND(CONFIG_SMB, smb, [HAVE_SMBCLIENT:yes], [SMB protocol],
1123 dnl           [  --disable-smb           disable SMB protocol support (requires smbclient)])
1126 EL_ARG_ENABLE(CONFIG_MOUSE, mouse, [Mouse handling],
1127               [  --disable-mouse         disable mouse support])
1129 # GPM mouse is Linux specific, so ...
1130 CONFIG_SYSMOUSE=yes
1131 EL_ARG_DEPEND(CONFIG_SYSMOUSE, sysmouse,
1132               [CONFIG_MOUSE:yes CONFIG_GPM:no HAVE_SYSMOUSE_HEADER:yes],
1133               [BSD sysmouse],
1134               [  --disable-sysmouse      disable BSD sysmouse support])
1136 EL_ARG_ENABLE(CONFIG_88_COLORS, 88-colors, [88 colors],
1137               [  --enable-88-colors      enable 88 color support])
1139 EL_ARG_ENABLE(CONFIG_256_COLORS, 256-colors, [256 colors],
1140               [  --enable-256-colors     enable 256 color support])
1143 EL_ARG_ENABLE(CONFIG_EXMODE, exmode, [Exmode interface],
1144               [  --enable-exmode         enable exmode (CLI) interface])
1146 EL_ARG_ENABLE(CONFIG_LEDS, leds, [LEDs],
1147               [  --disable-leds          disable LEDs support])
1149 EL_ARG_ENABLE(CONFIG_MARKS, marks, [Marks],
1150               [  --disable-marks         disable document marks support])
1153 EL_ARG_ENABLE(CONFIG_CSS, css, [Cascading Style Sheets],
1154               [  --disable-css           disable Cascading Style Sheet support])
1156 EL_ARG_DEPEND(CONFIG_HTML_HIGHLIGHT, html-highlight, [CONFIG_CSS:yes], [HTML highlighting],
1157               [  --enable-html-highlight HTML highlighting using DOM engine])
1159 dnl Everything in the tree already uses CONFIG_DOM
1160 dnl so resolve CONFIG_HTML_HIGHLIGHT to CONFIG_DOM
1161 EL_CONFIG_DEPENDS(CONFIG_DOM, [CONFIG_HTML_HIGHLIGHT], [DOM engine])
1163 EL_ARG_DEPEND(CONFIG_BACKTRACE, backtrace, [HAVE_EXECINFO:yes], [Backtrace],
1164               [  --disable-backtrace     disable backtrace support])
1166 EL_ARG_DEPEND(CONFIG_NO_ROOT_EXEC, no-root, [HAVE_GETUID:yes HAVE_GETEUID:yes], [No root exec],
1167               [  --enable-no-root        enable prevention of usage by root])
1170 EL_ARG_ENABLE(CONFIG_DEBUG, debug, [Debug mode],
1171               [  --enable-debug          enable leak debug and internal error checking])
1173 EL_ARG_DEPEND(CONFIG_FASTMEM, fastmem, [CONFIG_DEBUG:no], [Fast mode],
1174               [  --enable-fastmem        enable direct use of system allocation functions, not usable with --enable-debug])
1176 EL_ARG_ENABLE(CONFIG_OWN_LIBC, own-libc, [Own libc stubs],
1177               [  --enable-own-libc       force use of internal functions instead of those of system libc])
1179 EL_ARG_ENABLE(CONFIG_SMALL, small, [Small binary],
1180               [  --enable-small          reduce binary size as far as possible (but see the bottom of doc/small.txt!)])
1182 if test "$CONFIG_OPENSSL" != yes &&
1183    test "$CONFIG_GNUTLS_OPENSSL_COMPAT" != yes ||
1184    test "$CONFIG_OWN_LIBC" = yes;
1185 then
1186         AC_MSG_CHECKING(for built-in MD5 support)
1187         AC_MSG_RESULT(yes)
1188         EL_CONFIG(CONFIG_MD5, [Built-in MD5])
1191 AC_SUBST(CONFIG_MD5)
1193 if test "$CONFIG_BITTORRENT" = yes; then
1194         if test "$CONFIG_OPENSSL" != yes ||
1195            test "$CONFIG_OWN_LIBC" = yes;
1196         then
1197                 AC_MSG_CHECKING(for built-in SHA1 support)
1198                 AC_MSG_RESULT(yes)
1199                 EL_CONFIG(CONFIG_SHA1, [Built-in SHA1])
1200         fi
1203 AC_SUBST(CONFIG_SHA1)
1205 if test "$CONFIG_CSS" = yes || test "$CONFIG_DOM" = yes;
1206 then
1207         EL_CONFIG(CONFIG_SCANNER, [Built-in scanner])
1209 AC_SUBST(CONFIG_SCANNER)
1211 AC_ARG_ENABLE(weehoofooboomookerchoo,
1212               [
1213     Also check out the features.conf file for more information about features!
1214               ],
1215               [AC_MSG_ERROR(Are you strange, or what?)])
1218 dnl == EMX hack
1220 test "$CONFIG_OS2" = yes && LDFLAGS="$LDFLAGS -Zexe"
1221 test "$CONFIG_OS2" = yes && LDFLAGS=`echo "$LDFLAGS" | sed "s/-Zbin-files//g"`
1224 dnl ===================================================================
1225 dnl Export directory paths
1226 dnl ===================================================================
1228 # Set up the ``entry points'' if they were not supplied by builder
1229 test "x$prefix" = xNONE && prefix=$ac_default_prefix
1230 test "x$exec_prefix" = xNONE && exec_prefix=${prefix}
1232 # Create CONFDIR #define for config.h
1234 # XXX: This may be dependent on a particular version of autoconf. Whatever,
1235 # it's autoconf fault to force us to do such hacks ;p.
1236 if test x"$sysconfdir" = x"\${prefix}/etc"; then
1237   # sysconfdir is set to its default value... fine, let's append /elinks/
1238   # XXX: We can't modify listing of the default in ./configure --help :-(
1239   sysconfdir_n=`eval echo "$sysconfdir"`
1240   sysconfdir=$sysconfdir_n
1241   (echo "$sysconfdir" | grep elinks >/dev/null 2>/dev/null) || \
1242         sysconfdir="$sysconfdir/elinks"
1245 CONFDIR=$sysconfdir
1246 AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR", [Directory containing default config])
1247 AC_SUBST(CONFDIR)
1249 # Create LOCALEDIR #define for config.h
1250 LOCALEDIR=`eval echo "$datadir/locale"`
1251 AC_DEFINE_UNQUOTED(LOCALEDIR, "$LOCALEDIR", [Directory containing locales])
1252 AC_SUBST(LOCALEDIR)
1254 # Create LIBDIR #define for config.h
1255 LIBDIR=`eval echo "$libdir"`
1256 AC_DEFINE_UNQUOTED(LIBDIR, "$LIBDIR", [Directory containing libraries])
1257 AC_SUBST(LIBDIR)
1259 EL_LOG_CONFIG(CONFDIR, [System configuration directory], [])
1260 EL_LOG_CONFIG(LOCALEDIR, [Locale catalogs directory], [])
1262 dnl ===================================================================
1263 dnl A little fine tuning of gcc specific options (continued)
1264 dnl ===================================================================
1266 if test "x$ac_cv_prog_gcc" = "xyes"; then
1267   if test "$CONFIG_DEBUG" = "yes"; then
1268     dnl We want to see all warnings and live with none (in debug mode).
1269     CFLAGS="$CFLAGS -Werror"
1270   fi
1272   case "`$CC -dumpversion`" in
1273     3.0|3.1|3.2)
1274       # These should be ok using -Werror
1275       ;;
1276     3.*)
1277       # If gcc is version 3.3 (or higher?) it emits lots of false positive
1278       # "dereferencing type-punned pointer will break strict-aliasing rules"
1279       # warnings. Disable them by not doing any strict-aliasing. The
1280       # alternative is just too ugly. Thanks gcc guys!! ;)
1281       CFLAGS="$CFLAGS -fno-strict-aliasing"
1282       ;;
1283     4.*)
1284       # Do not show warnings related to (char * | unsigned char *) type
1285       # difference.
1286       CFLAGS="$CFLAGS -fno-strict-aliasing -Wno-pointer-sign"
1287       ;;
1288     *)
1289       # These should be ok using -Werror
1290       ;;
1291   esac
1294 # CFLAGS doesn't contain all compile flags. Some will be added only when
1295 # needed in the respective source directory. To get all compile flags
1296 # easily just add CPPFLAGS.
1297 ALL_CFLAGS="$CFLAGS $CPPFLAGS"
1299 EL_LOG_CONFIG(ALL_CFLAGS, [Compiler options (CFLAGS)], [])
1300 EL_LOG_CONFIG(LIBS, [Linker options (LIBS)], [])
1302 dnl ===================================================================
1303 dnl Colored make output
1304 dnl ===================================================================
1306 if test $(`which tput` colors) -ge 4; then
1307         MAKE_COLOR=1
1308         AC_SUBST(MAKE_COLOR)
1311 dnl ===================================================================
1312 dnl Generated files
1313 dnl ===================================================================
1315 AC_OUTPUT([ \
1316  Makefile.config \
1317  contrib/elinks.spec \
1318  contrib/lua/hooks.lua \
1319  contrib/conv/w3m2links.awk \
1320  doc/man/man1/elinks.1 \
1321  src/intl/gettext/ref-add.sed \
1322  src/intl/gettext/ref-del.sed
1325 abs_srcdir="$(cd "$srcdir" && pwd)"
1326 # builddir is always absolute!
1327 if test "$abs_srcdir" != "$builddir"; then
1328         # Bootstrap the Makefile creation
1329         echo "include $abs_srcdir/Makefile" > "$builddir/Makefile"
1330         "$MAKE" "SRC=$abs_srcdir" init
1331         # Make cg-status ignore this build directory
1332         echo "*" > "$builddir/.gitignore"
1336 dnl ===================================================================
1337 dnl Configuration summary
1338 dnl ===================================================================
1340 AC_MSG_RESULT(The following feature summary has been saved to features.log)
1341 cat features.log