Format up to 237.
[lyx.git] / configure.ac
blobed6b0acb1411ef4005e3f6a0be5fffbe13f0c5b1
1 dnl Process with autoconf to generate configure script   -*- sh -*-
3 AC_INIT(lyx,1.4.0cvs,lyx-devel@lists.lyx.org)
4 AC_PREREQ(2.52)
5 AC_CONFIG_SRCDIR(src/main.C)
6 AM_CONFIG_HEADER([src/config.h])
8 AC_CONFIG_AUX_DIR(config)
10 PACKAGE=lyx${program_suffix}
11 VERSION="1.4.0cvs"
12 LYX_CHECK_VERSION
14 dnl default maintainer mode to true for development versions
15 if test "${enable_maintainer_mode+set}" != set; then
16   enable_maintainer_mode=$lyx_devel_version
18 AM_MAINTAINER_MODE
19 AC_CANONICAL_TARGET
21 LYX_VERSION_SUFFIX
23 AM_INIT_AUTOMAKE($lyxname, $VERSION)
25 # The list of languages known to LyX
26 # This is needed by GNU gettext
27 ALL_LINGUAS="bg ca cs da de es eu fi fr he hu it nl nn no pl pt ro ru sk sl sv tr wa"
29 # fix the value of the prefixes.
30 test "x$prefix" = xNONE && prefix=$ac_default_prefix
31 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
33 ### Set the execute permissions of the various scripts correctly
34 for file in config/install-sh config/mkinstalldirs lib/configure ; do
35   chmod 755 ${srcdir}/${file}
36 done
38 ### Check for programs
39 AC_PROG_MAKE_SET
40 AC_PROG_INSTALL
41 #AC_PROG_RANLIB
42 AC_CHECK_PROG(KPSEWHICH, kpsewhich, kpsewhich, :)
43 if test "x$KPSEWHICH" = xkpsewhich ; then
44     AC_DEFINE(HAVE_KPSEWHICH, 1,
45     [Define this if you have the kpsewhich program working on your system.])
47 AC_CHECK_PROGS(M4, gm4 gnum4 m4, m4)
49 # Work around a problem in automake 1.4: when invoking install-strip,
50 # INSTALL_PROGRAM is changed to 'install -s', and since
51 # INSTALL_SCRIPT==INSTALL_PROGRAM, we get errors with fileutils-4.0
52 # which returns an error condition when stripping fails.
53 INSTALL_SCRIPT='${INSTALL}'
55 ### we will also need a C compiler to compile GNU gettext
56 AC_PROG_CC
58 ### check for special systems
59 AC_ISC_POSIX
60 AC_AIX
62 ### check which frontend we want to use
63 LYX_USE_FRONTENDS
65 ### Check for a C++ compiler
66 LYX_PROG_CXX
67 ### Some checks on what the C++ compiler can(not) do
68 AC_LANG(C++)
69 dnl we do not need that currently (and probably all our supported
70 dnl compiler allow that)
71 dnl LYX_CXX_PARTIAL
72 LYX_CXX_EXPLICIT
73 LYX_CXX_CHEADERS
74 LYX_CXX_GLOBAL_CSTD
75 LYX_STD_COUNT
76 dnl we disable rtti for now
77 dnl LYX_CXX_RTTI
78 AC_CHECK_HEADERS(ostream istream sstream locale limits ios)
79 LYX_CXX_STL_MODERN_STREAMS
81 ### and now some special lyx flags.
82 AC_ARG_ENABLE(assertions,
83   AC_HELP_STRING([--enable-assertions],[add runtime sanity checks in the program]),,
84   [if test $lyx_devel_version = yes -o $lyx_prerelease = yes ; then
85         enable_assertions=yes;
86     else
87         enable_assertions=no;
88     fi;])
89 if test "x$enable_assertions" = xyes ; then
90    lyx_flags="$lyx_flags assertions"
91    AC_DEFINE(ENABLE_ASSERTIONS,1,
92     [Define if you want assertions to be enabled in the code])
95 ### Library Files
96 dnl by testing these we check if it is ok to have
97 dnl -lc and -lm as args to the compiler
98 AC_CHECK_LIB(m, sin)
99 AC_CHECK_LIB(c, fopen)
101 ### Add extra directories to check for libraries.
102 LYX_WITH_DIR([extra-lib],[extra library directory],extra_lib, NONE)
103 LYX_LOOP_DIR($lyx_cv_extra_lib,LYX_ADD_LIB_DIR(lyx_ldflags,$dir))
104 test ! x"$lyx_ldflags" = x && LDFLAGS="$lyx_ldflags $LDFLAGS"
106 ### Add extra directories to check for include files.
107 LYX_WITH_DIR([extra-inc],[extra include directory],extra_inc, NONE)
108 LYX_LOOP_DIR($lyx_cv_extra_inc,LYX_ADD_INC_DIR(lyx_cppflags,$dir))
109 test ! x"$lyx_cppflags" = x && CPPFLAGS="$lyx_cppflags $CPPFLAGS"
111 ### Add both includes and libraries
112 LYX_WITH_DIR([extra-prefix],[extra lib+include directory],extra_prefix, NONE, ${prefix})
113 LYX_LOOP_DIR($lyx_cv_extra_prefix,[
114 LYX_ADD_INC_DIR(CPPFLAGS,$dir/include)
115   LYX_ADD_LIB_DIR(LDFLAGS,$dir/lib)])
117 AC_ARG_WITH(aiksaurus,
118   [  --without-aiksaurus     do not use the Aiksaurus library],
119   [lyx_use_aiksaurus=$withval])
120 if test x$lyx_use_aiksaurus != xno; then
121 AC_CHECK_LIB(Aiksaurus, main,
122         [AC_DEFINE(HAVE_LIBAIKSAURUS,1,[Define this if you have the AikSaurus library])
123          AIKSAURUS_LIBS="-lAiksaurus -lbz2"
124         ],,"-lbz2")
125 AC_CHECK_HEADER(Aiksaurus.h,[
126   ac_cv_header_aiksaurus_h=yes
127   lyx_cv_aiksaurus_h_location="<Aiksaurus.h>"])
128 AC_CHECK_HEADER(Aiksaurus/Aiksaurus.h,[
129   ac_cv_header_aiksaurus_h=yes
130   lyx_cv_aiksaurus_h_location="<Aiksaurus/Aiksaurus.h>"])
131 AC_DEFINE_UNQUOTED(AIKSAURUS_H_LOCATION,$lyx_cv_aiksaurus_h_location,[Location of Aiksaurus.h])
133 AC_SUBST(AIKSAURUS_LIBS)
135 LYX_USE_INCLUDED_BOOST
137 ### Setup libtool
138 AC_DISABLE_SHARED
139 AC_LIBTOOL_WIN32_DLL
140 #AM_PROG_LIBTOOL
141 LYX_PROG_LIBTOOL
143 ### Check if we want spell libraries, prefer new aspell
144 CHECK_WITH_ASPELL
145 if test "$USING_ASPELL" != "yes"; then
146         CHECK_WITH_PSPELL
149 ### Check for some Cygwin-specific details.
150 CHECK_WITH_CYGWIN
152 ### Check for X libraries
153 AC_PATH_XTRA
154 case $have_x in
155   yes) LIBS="$X_PRE_LIBS $LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
156        CPPFLAGS="$CPPFLAGS $X_CFLAGS";;
157   no) LYX_ERROR(dnl
158 [Cannot find X window libraries and/or headers. Check your installation.
159   If you use a Linux system, check that you have installed
160   the development tools.]);;
161   disable) ;;
162 esac
164 ### check which frontend we want to use
166 dnl if the gtk frontend has been specified, then xforms is needed too
167 if echo $FRONTENDS | grep gtk | grep -v xforms ; then
168   FRONTENDS="$FRONTENDS xforms"
171 dnl The code below is not in a macro, because this would cause big
172 dnl problems with the AC_REQUIRE contained in QT_DO_IT_ALL.
173 for frontend in $FRONTENDS ; do
174   case "$frontend" in
175     xforms)
176           XFORMS_DO_IT_ALL
177           FRONTENDS_PROGS="$FRONTENDS_PROGS lyx-xforms\$(EXEEXT)"
178           FRONTENDS_SUBDIRS="$FRONTENDS_SUBDIRS xforms"
179           RPM_FRONTEND="xforms"
180           RPM_FRONTEND_DEPS='libforms >= 1.0'
181           FRONTEND_INFO="${FRONTEND_INFO}\
182   XForms Frontend:\n\
183       libXpm version:\t\t${XPM_VERSION}\n\
184       libforms version:\t\t${XFORMS_VERSION}\n"
185           ;;
186   dnl   gnome)
187   dnl     XFORMS_DO_IT_ALL
188   dnl     PKG_CHECK_MODULES(GNOME_FRONTEND, gtkmm-2.0 libglademm-2.0)
189   dnl     AC_SUBST(GNOME_FRONTEND_CFLAGS)
190   dnl     AC_SUBST(GNOME_FRONTEND_LIBS)
192   dnl     FRONTEND="xforms gnome"
193   dnl     FRONTEND_GUILIB="gnome/*.lo"
194   dnl     FRONTEND_LDFLAGS="${GNOME_FRONTEND_LIBS}"
195   dnl     FRONTEND_INCLUDES="${GNOME_FRONTEND_CFLAGS}"
196   dnl     FRONTEND_LIBS="@XPM_LIB@ @XFORMS_LIB@ ${GNOME_FRONTEND_LIBS}"
197   dnl   ;;
198     gtk)
199           PKG_CHECK_MODULES(GTK_FRONTEND, gtkmm-2.4 libglademm-2.4)
200           FRONTENDS_PROGS="$FRONTENDS_PROGS lyx-gtk\$(EXEEXT)"
201           FRONTENDS_SUBDIRS="$FRONTENDS_SUBDIRS gtk"
202           RPM_FRONTEND="gtk"
203           RPM_FRONTEND_DEPS='gtkmm >= 2.4.0'
204           GTKMM_VERSION=`pkg-config --modversion gtkmm-2.4`
205           LIBGLADEMM_VERSION=`pkg-config --modversion libglademm-2.4`
206           FRONTEND_INFO="${FRONTEND_INFO}\
207   GTK Frontend:\n\
208     libgtkmm version:\t\t${GTKMM_VERSION}\n\
209     libglademm version:\t\t${LIBGLADEMM_VERSION}\n"
210           ;;
212     qt)
213           QT_DO_IT_ALL
214           FRONTENDS_PROGS="$FRONTENDS_PROGS lyx-qt\$(EXEEXT)"
215           FRONTENDS_SUBDIRS="$FRONTENDS_SUBDIRS qt2"
216           RPM_FRONTEND="qt"
217           RPM_FRONTEND_DEPS='qt >= 2.2.1'
218           FRONTEND_INFO="${FRONTEND_INFO}\
219   Qt Frontend:\n\
220       Qt version:\t\t${QT_VERSION}\n"
221 dnl qt build will fail without moc or uic
222           if test -z "$MOC"; then
223             LYX_ERROR([moc binary not found !])
224           fi
225           if test -z "$UIC"; then
226             LYX_ERROR([uic binary not found !])
227           fi
228       ;;
229     *)
230           LYX_ERROR(Unknown frontend '$frontend');;
231   esac
232 done
234 ### Setup GNU gettext
235 dnl GNU gettext is written in C
236 AC_LANG_PUSH(C)
237 # Some tests that may be useful for gettext
238 AC_C_CONST
239 AC_C_INLINE
240 # Do the real setup now
241 AM_GNU_GETTEXT
242 # a hack for those who try to change LyX, but do not have gettext installed
243 case  "${XGETTEXT}" in
244  *:) XGETTEXT='cp ${srcdir}/lyx.pot ./${PACKAGE}.po ; :'
245 esac
247 AC_SUBST(LINGUAS)
249 AC_LANG_POP(C)
251 # some standard header files
252 AC_HEADER_DIRENT
253 AC_HEADER_MAJOR
254 AC_CHECK_HEADERS(sys/time.h sys/types.h sys/select.h strings.h locale.h)
256 # some standard structures
257 AC_HEADER_STAT
258 AC_HEADER_TIME
260 # some standard types
261 AC_TYPE_MODE_T
262 AC_TYPE_OFF_T
263 AC_TYPE_PID_T
264 AC_TYPE_SIGNAL
265 AC_TYPE_SIZE_T
266 AC_TYPE_UID_T
268 AC_CHECK_FUNCS(snprintf vsnprintf strerror)
269 LYX_CHECK_DECL(snprintf, stdio.h)
270 LYX_CHECK_DECL(vsnprintf, stdio.h)
271 LYX_CHECK_DECL(istreambuf_iterator, iterator)
272 LYX_CHECK_DECL(mkstemp,[unistd.h stdlib.h])
274 AC_ARG_ENABLE(compression-support, AC_HELP_STRING([--enable-compression-support],[Support for compressed files.]),[
275     case "${enableval}" in
276         yes) use_compression=true ;;
277         no) use_compression=false ;;
278         *) AC_MSG_ERROR(bad value ${enableval} for --enable-compression-support) ;;
279     esac
280 ],[use_compression=true])
281 if test $use_compression=true ; then
282         AC_CHECK_HEADERS(zlib.h, use_compression=true, use_compression=false)
283         AC_CHECK_LIB(z, gzopen,[use_compression=true;LIBS="$LIBS -lz"], use_compression=false)
284         if test $use_compression = true ; then
285                 AC_DEFINE(USE_COMRESSION, 1, [Define as 1 if you want to support compressed files.])
286                 lyx_flags="$lyx_flags compression"
287         fi
289 AM_CONDITIONAL(USE_COMPRESSION, test x$use_compression = xtrue)
290 AC_MSG_CHECKING([whether to support compressed files])
291 AC_MSG_RESULT($use_compression)
294 dnl This is a slight hack: the tests generated by autoconf 2.52 do not
295 dnl work correctly because of some conflict with stdlib.h with g++ 2.96
296 dnl We aim to remove this eventually, since we should test as much as
297 dnl possible with the compiler which will use the functions (JMarc)
298 AC_LANG_PUSH(C)
299 AC_CHECK_FUNCS(memmove memset strchr mkfifo mkstemp mktemp)
300 AC_LANG_POP(C)
302 AC_FUNC_SELECT_ARGTYPES
304 ### Some information on what just happened
305 real_bindir=`eval "echo \`eval \"echo ${bindir}\"\`"`
306 real_datadir=`eval "echo \`eval \"echo ${datadir}/${PACKAGE}\"\`"`
307 VERSION_INFO="Configuration\n\
308   Host type:                      ${host}\n\
309   Special build flags:           ${lyx_flags}\n\
310   C   Compiler:                   ${CC}\n\
311   C   Compiler flags:             ${CFLAGS}\n\
312   C++ Compiler:                   ${CXX} ${CXX_VERSION}\n\
313   C++ Compiler flags:             ${CXXFLAGS}\n\
314   Linker flags:                   ${LDFLAGS}\n\
315 ${FRONTEND_INFO}\
316   LyX binary dir:                 ${real_bindir}\n\
317   LyX files dir:                  ${real_datadir}\n"
320 AC_SUBST(VERSION_INFO)
321 AC_SUBST(RPM_FRONTEND)
322 AC_SUBST(RPM_FRONTEND_DEPS)
324 ## Some config.h stuff
326 AH_TOP([
327 /* -*- C++ -*- */
329  * \file config.h
330  * This file is part of LyX, the document processor.
331  * Licence details can be found in the file COPYING.
333  * This is the compilation configuration file for LyX.
334  * It was generated by autoconfs configure.
335  * You might want to change some of the defaults if something goes wrong
336  * during the compilation.
337  */
339 #ifndef _CONFIG_H
340 #define _CONFIG_H
343 AH_BOTTOM([
344 /************************************************************
345  ** You should not need to change anything beyond this point */
347 #ifndef HAVE_STRCHR
348 # define strchr(a,b)    index(a,b)
349 #endif
351 #ifndef HAVE_MEMMOVE
352 # define memmove(a,b,c) bcopy(b,a,c)
353 #endif
355 #ifndef HAVE_STRERROR
356 #if defined(__cplusplus)
357 extern "C"
358 #endif
359 char * strerror(int n);
360 #endif
362 #ifdef BROKEN_HEADERS
363 #include "broken_headers.h"
364 #endif
366 #ifdef HAVE_MKSTEMP
367 #ifndef HAVE_DECL_MKSTEMP
368 #if defined(__cplusplus)
369 extern "C"
370 #endif
371 int mkstemp(char*);
372 #endif
373 #endif
375 #ifdef __EMX__
376 #include "support/os2_defines.h"
377 #endif
379 #if defined(HAVE_OSTREAM) && defined(HAVE_LOCALE) && defined(HAVE_SSTREAM)
380 #define USE_BOOST_FORMAT 1
381 #else
382 #define USE_BOOST_FORMAT 0
383 #endif
385 #define BOOST_USER_CONFIG <config.h>
387 #if defined(ENABLE_ASSERTIONS)
388 #define BOOST_ENABLE_ASSERT_HANDLER 1
389 #else
390 #define BOOST_DISABLE_ASSERTS 1
391 #endif
393 #define BOOST_DISABLE_THREADS 1
394 #define BOOST_NO_WREGEX 1
395 #define BOOST_NO_WSTRING 1
397 #endif
400 ### Finish the work.
401 AC_CONFIG_SUBDIRS(lib lib/reLyX)
402 AC_CONFIG_FILES([Makefile  m4/Makefile \
403        boost/Makefile \
404        boost/libs/Makefile \
405        boost/libs/filesystem/Makefile \
406        boost/libs/filesystem/src/Makefile \
407        boost/libs/regex/Makefile \
408        boost/libs/regex/src/Makefile \
409        boost/libs/signals/Makefile \
410        boost/libs/signals/src/Makefile \
411        config/Makefile \
412        development/Makefile \
413        development/lyx.spec \
414        lib/Makefile \
415        lib/doc/Makefile \
416        intl/Makefile \
417        po/Makefile.in \
418        sourcedoc/Doxyfile \
419        sourcedoc/Makefile \
420        src/client/Makefile \
421        src/Makefile \
422        src/version.C-tmp:src/version.C.in \
423        src/tex2lyx/Makefile \
424        src/mathed/Makefile \
425        src/graphics/Makefile \
426        src/insets/Makefile \
427        src/support/Makefile \
428        src/frontends/Makefile \
429        src/frontends/controllers/Makefile \
430        src/frontends/xforms/Makefile \
431        src/frontends/xforms/lyx_forms.h-tmp:src/frontends/xforms/lyx_forms.h.in \
432        src/frontends/xforms/lyx_xpm.h-tmp:src/frontends/xforms/lyx_xpm.h.in \
433        src/frontends/xforms/forms/Makefile \
434        src/frontends/gtk/Makefile \
435        src/frontends/gtk/gimages/Makefile \
436        src/frontends/gtk/glade/Makefile \
437        src/frontends/qt2/Makefile \
438        src/frontends/qt2/moc/Makefile \
439        src/frontends/qt2/ui/Makefile \
440        src/frontends/qt2/ui/moc/Makefile \
441        src/frontends/gnome/Makefile \
444 AC_OUTPUT
445 # show version information
446 echo
447 printf "$VERSION_INFO"
448 echo
450 # Display a final warning if there has been a LYX_ERROR
451 LYX_CHECK_ERRORS