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