+AM_PROG_AS
[captive.git] / configure.in
1 # $Id$
2 # Source file to generate "./configure" to prepare package for compilation
3 # Copyright (C) 2002 Jan Kratochvil <project-captive@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 AC_INIT(src/libcaptive/Makefile-libcaptive.am)
20 AM_INIT_AUTOMAKE(captive,0.2cvs)
21 AM_CONFIG_HEADER(config.h)
22 AM_MAINTAINER_MODE
23 #AM_ACLOCAL_INCLUDE(macros)
24 dnl Prevent "AC_TRY_COMPILE was called before AC_ISC_POSIX":
25 AC_ISC_POSIX
26 AC_PROG_CC
27 AM_PROG_AS
28 AM_ENABLE_STATIC
29 AM_DISABLE_SHARED
30 AM_PROG_LIBTOOL
31
32 dnl gettext localization.
33 dnl FIXME: should we use AM_GLIB_GNU_GETTEXT of glib-gettext.m4 ?
34 ALL_LINGUAS="cs"
35 AM_GNU_GETTEXT
36
37 GTK_DOC_CHECK
38
39 dnl Do not discard 'CFLAGS' settings as they may have been passed us by rpmbuild(8)
40
41 dnl Define MAINTAINER_MODE in config.h.
42 if test "$USE_MAINTAINER_MODE" = "yes";then
43         AC_DEFINE(MAINTAINER_MODE,,[Turn even some software behaviour according to MAINTAINER_MODE.])
44         CFLAGS="$CFLAGS -ggdb3 -Wall -Wstrict-prototypes -Wsign-compare"  ## FIXME: fix all sources: -Wsign-compare
45         fi
46 dnl Some Makefiles use additional tests etc.
47 AM_CONDITIONAL(MAINTAINER_MODE,[test "$USE_MAINTAINER_MODE" = "yes"])
48
49 dnl Permit 'if IS_FALSE' for Makefile.am-s; symbol 'FALSE' forbidden by automake
50 AM_CONDITIONAL(IS_FALSE,false)
51
52 dnl Separate 'acconfig.h' is no longer recommended by autoconf
53 AH_TOP([
54 #ifndef _CAPTIVE_CONFIG_H
55 #define _CAPTIVE_CONFIG_H 1
56
57 #include <glib/gtypes.h>        /* for 'gchar' */
58 #define G_LOG_DOMAIN ((const gchar *)"Captive")
59
60 /* Supplemental definitions not possible in this file. */
61 #ifdef LIBCAPTIVE
62 #include "captive/config2.h"
63 #endif
64 ])
65 AH_BOTTOM([
66 #endif /* !_CAPTIVE_CONFIG_H */
67 ])
68
69 dnl ENABLE_NLS_HOOK name to guarantee inclusion AFTER '#undef ENABLE_NLS'
70 AH_VERBATIM([ENABLE_NLS_HOOK],[
71 #ifdef ENABLE_NLS
72 /* <libintl.h> is taken from "$(top_srcdir)/intl" if system doesn't provide intl */
73 #       include <libintl.h>
74 #ifdef LIBCAPTIVE
75 #       define _(String) dgettext (PACKAGE,String)
76 #else
77 #       define _(String) gettext (String)
78 #endif /* LIBCAPTIVE */
79 #       ifdef gettext_noop
80 #               define N_(String) gettext_noop (String)
81 #       else
82 #               define N_(String) (String)
83 #       endif
84 #else /* !ENABLE_NLS */
85 /* Stubs that do something close enough.  */
86 #       define textdomain(String) (String)
87 #       define gettext(String) (String)
88 #       define dgettext(Domain,Message) (Message)
89 #       define dcgettext(Domain,Message,Type) (Message)
90 #       define bindtextdomain(Domain,Directory) (Domain)
91 #       define _(String) (String)
92 #       define N_(String) (String)
93 #endif /* !ENABLE_NLS */
94 ])
95
96 AM_PATH_GLIB_2_0(,,[AC_MSG_ERROR([Captive requires glib-2.0 library.])],[gmodule gobject])
97 dnl Force glib for the whole package
98 CFLAGS="$CFLAGS $GLIB_CFLAGS"
99 LIBS="$LIBS $GLIB_LIBS"
100
101 dnl popt
102 AC_CHECK_LIB(popt,poptParseArgvString,[POPT_LIBS="-lpopt"],[AC_MSG_ERROR([Captive requires popt library.])])
103 AC_SUBST(POPT_LIBS)
104
105 AC_ARG_WITH(readline,   [  --with-readline=[no/yes/auto]        cmdline client w/line editing [default=auto]],,with_readline=auto)
106 AC_CHECK_HEADERS(readline/history.h)
107 dnl Check for libraries, if needed by configuration options.
108 if test "$with_readline" != "no"
109 then
110         if test -d "/usr/lib/termcap"
111         then
112                 READLINE_LDFLAGS="$READLINE_LDFLAGS -L/usr/lib/termcap"
113         fi
114         have_libreadline=false
115         need_failed=""
116         for need in "" termcap ncurses; do
117                 if test "x$need" != "x"
118                 then
119                         AC_CHECK_LIB($need, main,,
120                                 [ need_failed="$need_failed $need"
121                                 continue ]
122                                 )
123                         lneed=-l$need
124                 else
125                         lneed=""
126                 fi
127                 dnl Prevent AC_CHECK_LIB() here as it would _cache_ the value ignoring
128                 dnl our ever-changing "additiona libraries" parameter
129                 captive_save_LIBS="$LIBS"
130                 LIBS="-lreadline $lneed $READLINE_LIBS"
131                 AC_TRY_LINK(,[ main() ],
132                         [ have_libreadline=true
133                         READLINE_LIBS="$LIBS" ])
134                 LIBS="$captive_save_LIBS"
135                 if $have_libreadline
136                 then
137                         break
138                 fi
139         done
140         if $have_libreadline
141         then
142                 AC_DEFINE(HAVE_LIBREADLINE,,[Use functions from libreadline?])
143                 AC_CHECK_LIB(readline, add_history,
144                         AC_DEFINE(HAVE_ADD_HISTORY,,[Use 'history' extension of libreadline?]),,
145                         $READLINE_LIBS)
146         else
147                 for need in $need_failed; do
148                         AC_MSG_WARN(captive recommends $need library as your readline library
149                         probably needs it.)
150                 done
151                 if test "$with_readline" = "yes"
152                 then
153                         AC_MSG_ERROR([captive did not find the requested readline library for its cmdline client line editing capability.])
154                 else
155                         AC_MSG_WARN([captive recommends readline library for its cmdline client line editing capability.])
156                 fi
157         fi
158 fi
159 AC_SUBST(READLINE_LIBS)
160 AC_SUBST(READLINE_LDFLAGS)
161
162 PKG_CHECK_MODULES(GNOME_VFS_MODULE,gnome-vfs-module-2.0)
163 AC_SUBST(GNOME_VFS_MODULE_CFLAGS)
164 AC_SUBST(GNOME_VFS_MODULE_LIBS)
165
166 dnl for $(top_srcdir)/src/libcaptive/sandbox/split-sandbox.c
167 AM_PATH_LINC(,,[AC_MSG_ERROR([Captive requires linc library used by ORBit.])])
168
169 dnl for $(top_srcdir)/src/libcaptive/client/
170 dnl Do not use '[client server]' as $4 to prevent: configure: test: too many arguments
171 dnl  - currently this argument is not used by 'orbit2-config' in any way anyway
172 AM_PATH_ORBIT2(,,[AC_MSG_ERROR([Captive requires ORBit library.])])
173
174
175 AC_SUBST(CFLAGS)
176 AC_SUBST(LIBS)
177
178 dnl "Makefile" output files MUST have pathnames incl./excl. "./" prefix as specified!
179 AC_OUTPUT([
180 captive.spec
181 Makefile
182 ./macros/Makefile
183 ./po/Makefile.in
184 ./intl/Makefile
185 ./m4/Makefile
186 ./src/Makefile
187 ./src/libcaptive/Makefile
188 ./src/libcaptive/include/Makefile
189 ./src/libcaptive/include/captive/Makefile
190 ./src/libcaptive/include/reactos/Makefile
191 ./src/libcaptive/include/reactos/ddk/Makefile
192 ./src/libcaptive/include/reactos/ddk/i386/Makefile
193 ./src/libcaptive/include/reactos/internal/Makefile
194 ./src/libcaptive/include/reactos/internal/i386/Makefile
195 ./src/libcaptive/include/reactos/napi/Makefile
196 ./src/libcaptive/include/reactos/ntos/Makefile
197 ./src/libcaptive/reactos/Makefile
198 ./src/libcaptive/reactos/include/Makefile
199 ./src/libcaptive/reactos/hal/Makefile
200 ./src/libcaptive/reactos/hal/halx86/Makefile
201 ./src/libcaptive/reactos/ntoskrnl/Makefile
202 ./src/libcaptive/reactos/ntoskrnl/dbg/Makefile
203 ./src/libcaptive/reactos/ntoskrnl/ex/Makefile
204 ./src/libcaptive/reactos/ntoskrnl/fs/Makefile
205 ./src/libcaptive/reactos/ntoskrnl/io/Makefile
206 ./src/libcaptive/reactos/ntoskrnl/ke/Makefile
207 ./src/libcaptive/reactos/ntoskrnl/ldr/Makefile
208 ./src/libcaptive/reactos/ntoskrnl/mm/Makefile
209 ./src/libcaptive/reactos/ntoskrnl/nt/Makefile
210 ./src/libcaptive/reactos/ntoskrnl/ob/Makefile
211 ./src/libcaptive/reactos/ntoskrnl/ps/Makefile
212 ./src/libcaptive/reactos/ntoskrnl/rtl/Makefile
213 ./src/libcaptive/reactos/ntoskrnl/rtl/i386/Makefile
214 ./src/libcaptive/reactos/ntoskrnl/se/Makefile
215 ./src/libcaptive/halcaptive/Makefile
216 ./src/libcaptive/cc/Makefile
217 ./src/libcaptive/cm/Makefile
218 ./src/libcaptive/ex/Makefile
219 ./src/libcaptive/fs/Makefile
220 ./src/libcaptive/io/Makefile
221 ./src/libcaptive/kd/Makefile
222 ./src/libcaptive/ke/Makefile
223 ./src/libcaptive/ldr/Makefile
224 ./src/libcaptive/mm/Makefile
225 ./src/libcaptive/nt/Makefile
226 ./src/libcaptive/ob/Makefile
227 ./src/libcaptive/po/Makefile
228 ./src/libcaptive/ps/Makefile
229 ./src/libcaptive/rtl/Makefile
230 ./src/libcaptive/se/Makefile
231 ./src/libcaptive/storage/Makefile
232 ./src/libcaptive/sandbox/Makefile
233 ./src/libcaptive/client/Makefile
234 ./src/client/Makefile
235 ./src/client/cmdline/Makefile
236 ./src/client/libcaptive-gnomevfs/Makefile
237 ./doc/Makefile
238 ./doc/apiref/Makefile
239 ./src/client/libcaptive-gnomevfs/captive.conf
240 ])
241
242 dnl FIXME: Why is "po/POTFILES" being substituted?
243 make -C src distfiles DISTFILES_PRINT=1 \
244                 |sed -n 's/^:DISTFILES: *\(.*\)$/\1/p'|tr ' ' '\n'|grep . >po/POTFILES.in
245 cat po/POTFILES.in >po/POTFILES
246
247 echo done.