Called ChangeLog builder renamed to match Debian package: cvs2cl.pl -> cvs2cl
[captive.git] / configure.in
index 6f458b0..6e91431 100644 (file)
@@ -1,6 +1,6 @@
 # $Id$
 # Source file to generate "./configure" to prepare package for compilation
-# Copyright (C) 2002 Jan Kratochvil <project-captive@jankratochvil.net>
+# Copyright (C) 2002-2003 Jan Kratochvil <project-captive@jankratochvil.net>
 # 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 
 
 AC_INIT(src/libcaptive/Makefile-libcaptive.am)
-AM_INIT_AUTOMAKE(captive,0.2cvs)
+dnl 2.53 for AM_GLIB_GNU_GETTEXT:
+AC_PREREQ(2.53)
+AM_INIT_AUTOMAKE(captive,0.9cvs)
 AM_CONFIG_HEADER(config.h)
 AM_MAINTAINER_MODE
 #AM_ACLOCAL_INCLUDE(macros)
 dnl Prevent "AC_TRY_COMPILE was called before AC_ISC_POSIX":
 AC_ISC_POSIX
+AC_SYS_LARGEFILE
 AC_PROG_CC
+AM_PROG_AS
 AM_ENABLE_STATIC
 AM_DISABLE_SHARED
 AM_PROG_LIBTOOL
 
 dnl gettext localization.
-dnl FIXME: should we use AM_GLIB_GNU_GETTEXT of glib-gettext.m4 ?
+dnl Use simpler AM_GLIB_GNU_GETTEXT instead of AM_GNU_GETTEXT
+dnl as we depend on glib and glib requires system installed gettext anyway.
+dnl http://lists.gnome.org/archives/gtk-devel-list/2003-April/msg00066.html
+dnl Special 'GETTEXT_PACKAGE' is required by glib gettext.
 ALL_LINGUAS="cs"
-AM_GNU_GETTEXT
-
-AM_PATH_GLIB_2_0(,,[AC_MSG_ERROR([Captive requires glib-2.0 library.])])
+GETTEXT_PACKAGE="$PACKAGE"
+AC_SUBST(GETTEXT_PACKAGE)
+AM_GLIB_GNU_GETTEXT
 
 GTK_DOC_CHECK
+dnl AM_CONDITIONAL needs to be here explicitely for doc/apiref/Makefile rebuild
+AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
 
-dnl discard -g -O2 settings
-CFLAGS=
+dnl Do not discard 'CFLAGS' settings as they may have been passed us by rpmbuild(8)
 
 dnl Define MAINTAINER_MODE in config.h.
 if test "$USE_MAINTAINER_MODE" = "yes";then
        AC_DEFINE(MAINTAINER_MODE,,[Turn even some software behaviour according to MAINTAINER_MODE.])
-       CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wsign-compare"  ## FIXME: fix all sources: -Wsign-compare
+       CFLAGS="$CFLAGS -ggdb3 -Wall -Wstrict-prototypes -Wsign-compare"  ## FIXME: fix all sources: -Wsign-compare
        fi
 dnl Some Makefiles use additional tests etc.
 AM_CONDITIONAL(MAINTAINER_MODE,[test "$USE_MAINTAINER_MODE" = "yes"])
 
-dnl Permit 'if IS_FALSE' for Makefile.am-s; symbol 'FALSE' forbidden by automake
-AM_CONDITIONAL(IS_FALSE,false)
+AC_ARG_WITH(sandbox-setuid,
+               [  --with-sandbox-setuid=user    non-privileged user  for captive-sandbox-server (def.=captive)],
+               [ CAPTIVE_SANDBOX_SETUID="$withval" ],[ CAPTIVE_SANDBOX_SETUID="captive" ])
+AC_DEFINE_UNQUOTED(CAPTIVE_SANDBOX_SETUID,"$CAPTIVE_SANDBOX_SETUID",
+               [non-privileged user  for captive-sandbox-server])
 
-AC_ARG_ENABLE(debug,[  --enable-debug=[no/yes] turn on debugging messages [default=yes]],,enable_debug=yes)
+AC_ARG_WITH(sandbox-setgid,
+               [  --with-sandbox-setgid=group   non-privileged group for captive-sandbox-server (def.=captive)],
+               [ CAPTIVE_SANDBOX_SETGID="$withval" ],[ CAPTIVE_SANDBOX_SETGID="captive" ])
+AC_DEFINE_UNQUOTED(CAPTIVE_SANDBOX_SETGID,"$CAPTIVE_SANDBOX_SETGID",
+               [non-privileged group for captive-sandbox-server])
 
-if test "$enable_debug" != "no";then
-       CFLAGS="$CFLAGS -ggdb3"
-       fi
+AC_ARG_WITH(sandbox-chroot,
+               [  --with-sandbox-chroot=dir     root-owned directory for captive-sandbox-server (def.=/var/lib/captive)],
+               [ CAPTIVE_SANDBOX_CHROOT="$withval" ],[ CAPTIVE_SANDBOX_CHROOT="/var/lib/captive" ])
+AC_DEFINE_UNQUOTED(CAPTIVE_SANDBOX_CHROOT,"$CAPTIVE_SANDBOX_CHROOT",
+               [root-owned directory for captive-sandbox-server])
+
+dnl Permit 'if IS_FALSE' for Makefile.am-s; symbol 'FALSE' forbidden by automake
+AM_CONDITIONAL(IS_FALSE,false)
 
 dnl Separate 'acconfig.h' is no longer recommended by autoconf
 AH_TOP([
@@ -63,11 +83,10 @@ AH_TOP([
 #define _CAPTIVE_CONFIG_H 1
 ])
 AH_BOTTOM([
-#endif /* !_CAPTIVE_CONFIG_H */
-])
+/* Do not place any stuff to AH_TOP as some of its includes
+ * would discard the effect of _FILE_OFFSET_BITS by AC_SYS_LARGEFILE.
+ */
 
-dnl ENABLE_NLS_HOOK name to guarantee inclusion AFTER '#undef ENABLE_NLS'
-AH_VERBATIM([ENABLE_NLS_HOOK],[
 #ifdef ENABLE_NLS
 /* <libintl.h> is taken from "$(top_srcdir)/intl" if system doesn't provide intl */
 #      include <libintl.h>
@@ -75,7 +94,7 @@ AH_VERBATIM([ENABLE_NLS_HOOK],[
 #      define _(String) dgettext (PACKAGE,String)
 #else
 #      define _(String) gettext (String)
-#endif /* LIBSURPRISE */
+#endif /* LIBCAPTIVE */
 #      ifdef gettext_noop
 #              define N_(String) gettext_noop (String)
 #      else
@@ -91,12 +110,111 @@ AH_VERBATIM([ENABLE_NLS_HOOK],[
 #      define _(String) (String)
 #      define N_(String) (String)
 #endif /* !ENABLE_NLS */
+
+#include <glib/gtypes.h>       /* for 'gchar' */
+#define G_LOG_DOMAIN ((const gchar *)"Captive")
+
+/* Supplemental definitions not possible in this file. */
+#ifdef LIBCAPTIVE
+#include "captive/config2.h"
+#endif
+
+#endif /* !_CAPTIVE_CONFIG_H */
 ])
 
+AM_PATH_GLIB_2_0(,,[AC_MSG_ERROR([Captive requires glib-2.0 library.])],[gmodule gobject])
 dnl Force glib for the whole package
 CFLAGS="$CFLAGS $GLIB_CFLAGS"
-AC_SUBST(CFLAGS)
 LIBS="$LIBS $GLIB_LIBS"
+
+dnl popt
+AC_CHECK_LIB(popt,poptParseArgvString,[POPT_LIBS="-lpopt"],[AC_MSG_ERROR([Captive requires popt library.])])
+AC_SUBST(POPT_LIBS)
+
+AC_ARG_WITH(readline,  [  --with-readline=[no/yes/auto]        cmdline client w/line editing [default=auto]],,with_readline=auto)
+AC_CHECK_HEADERS(readline/history.h)
+dnl Check for libraries, if needed by configuration options.
+if test "$with_readline" != "no"
+then
+       if test -d "/usr/lib/termcap"
+       then
+               READLINE_LDFLAGS="$READLINE_LDFLAGS -L/usr/lib/termcap"
+       fi
+       have_libreadline=false
+       need_failed=""
+       for need in "" termcap ncurses; do
+               if test "x$need" != "x"
+               then
+                       captive_save_LIBS="$LIBS"
+                       AC_CHECK_LIB($need, main,,
+                               [ need_failed="$need_failed $need"
+                               continue ]
+                               )
+                       LIBS="$captive_save_LIBS"
+                       lneed="-l$need"
+               else
+                       lneed=""
+               fi
+               dnl Prevent AC_CHECK_LIB() here as it would _cache_ the value ignoring
+               dnl our ever-changing "additiona libraries" parameter
+               captive_save_LIBS="$LIBS"
+               LIBS="-lreadline $lneed $READLINE_LIBS"
+               AC_TRY_LINK(,[ main() ],
+                       [ have_libreadline=true
+                       READLINE_LIBS="$LIBS" ])
+               LIBS="$captive_save_LIBS"
+               if $have_libreadline
+               then
+                       break
+               fi
+       done
+       if $have_libreadline
+       then
+               AC_DEFINE(HAVE_LIBREADLINE,,[Use functions from libreadline?])
+               AC_CHECK_LIB(readline, add_history,
+                       AC_DEFINE(HAVE_ADD_HISTORY,,[Use 'history' extension of libreadline?]),,
+                       $READLINE_LIBS)
+       else
+               for need in $need_failed; do
+                       AC_MSG_WARN(captive recommends $need library as your readline library
+                       probably needs it.)
+               done
+               if test "$with_readline" = "yes"
+               then
+                       AC_MSG_ERROR([captive did not find the requested readline library for its cmdline client line editing capability.])
+               else
+                       AC_MSG_WARN([captive recommends readline library for its cmdline client line editing capability.])
+               fi
+       fi
+fi
+AC_SUBST(READLINE_LIBS)
+AC_SUBST(READLINE_LDFLAGS)
+
+PKG_CHECK_MODULES(GNOME_VFS_MODULE,gnome-vfs-module-2.0)
+AC_SUBST(GNOME_VFS_MODULE_CFLAGS)
+AC_SUBST(GNOME_VFS_MODULE_LIBS)
+
+dnl Check for 2.5.9 for: http://bugzilla.gnome.org/show_bug.cgi?id=117702
+dnl Check the version - impossible to reliably check the missing feature.
+dnl FIXME: Just disable bug-replay(1) build if not met; --bug-pathname would be still OK.
+PKG_CHECK_MODULES(LIBXML,libxml-2.0 >= 2.5.9)
+AC_SUBST(LIBXML_CFLAGS)
+AC_SUBST(LIBXML_LIBS)
+
+PKG_CHECK_MODULES(OPENSSL,openssl)
+AC_SUBST(OPENSSL_CFLAGS)
+AC_SUBST(OPENSSL_LIBS)
+
+dnl for $(top_srcdir)/src/libcaptive/sandbox/split-sandbox.c
+AM_PATH_LINC(,,[AC_MSG_ERROR([Captive requires linc library used by ORBit.])])
+
+dnl for $(top_srcdir)/src/libcaptive/client/
+dnl Do not use '[client server]' as $4 to prevent: configure: test: too many arguments
+dnl  - currently this argument is not used by 'orbit2-config' in any way anyway
+AM_PATH_ORBIT2(,,[AC_MSG_ERROR([Captive requires ORBit library.])])
+
+
+AC_SUBST(CFLAGS)
 AC_SUBST(LIBS)
 
 dnl "Makefile" output files MUST have pathnames incl./excl. "./" prefix as specified!
@@ -105,8 +223,6 @@ captive.spec
 Makefile
 ./macros/Makefile
 ./po/Makefile.in
-./intl/Makefile
-./m4/Makefile
 ./src/Makefile
 ./src/libcaptive/Makefile
 ./src/libcaptive/include/Makefile
@@ -130,31 +246,46 @@ Makefile
 ./src/libcaptive/reactos/ntoskrnl/ke/Makefile
 ./src/libcaptive/reactos/ntoskrnl/ldr/Makefile
 ./src/libcaptive/reactos/ntoskrnl/mm/Makefile
+./src/libcaptive/reactos/ntoskrnl/nt/Makefile
 ./src/libcaptive/reactos/ntoskrnl/ob/Makefile
 ./src/libcaptive/reactos/ntoskrnl/ps/Makefile
 ./src/libcaptive/reactos/ntoskrnl/rtl/Makefile
+./src/libcaptive/reactos/ntoskrnl/rtl/i386/Makefile
 ./src/libcaptive/reactos/ntoskrnl/se/Makefile
 ./src/libcaptive/halcaptive/Makefile
 ./src/libcaptive/cc/Makefile
+./src/libcaptive/cm/Makefile
+./src/libcaptive/ex/Makefile
+./src/libcaptive/fs/Makefile
 ./src/libcaptive/io/Makefile
 ./src/libcaptive/kd/Makefile
 ./src/libcaptive/ke/Makefile
 ./src/libcaptive/ldr/Makefile
 ./src/libcaptive/mm/Makefile
+./src/libcaptive/nt/Makefile
 ./src/libcaptive/ob/Makefile
+./src/libcaptive/po/Makefile
 ./src/libcaptive/ps/Makefile
 ./src/libcaptive/rtl/Makefile
+./src/libcaptive/se/Makefile
 ./src/libcaptive/storage/Makefile
+./src/libcaptive/sandbox/Makefile
 ./src/libcaptive/client/Makefile
 ./src/client/Makefile
+./src/client/bug-replay/Makefile
 ./src/client/cmdline/Makefile
+./src/client/gnomevfs/Makefile
+./src/client/lufs/Makefile
+./src/client/sandbox-server/Makefile
+./src/TraceFS/Makefile
 ./doc/Makefile
 ./doc/apiref/Makefile
+./src/client/gnomevfs/captive.conf
 ])
 
 dnl FIXME: Why is "po/POTFILES" being substituted?
 make -C src distfiles DISTFILES_PRINT=1 \
                |sed -n 's/^:DISTFILES: *\(.*\)$/\1/p'|tr ' ' '\n'|grep . >po/POTFILES.in
-cat po/POTFILES.in >po/POTFILES
+make -C po Makefile
 
 echo done.