]> git.lyx.org Git - lyx.git/blob - configure.in
small bugfixes
[lyx.git] / configure.in
1 dnl Process with autoconf to generate configure script   -*- sh -*-
2
3 AC_INIT(src/main.C)
4 AC_PREREQ(2.13) dnl We want to use autoconf 2.13
5 AM_CONFIG_HEADER(src/config.h)
6 dnl This is a trick to make autoheader do the right thing
7 dnl AM_CONFIG_HEADER(src/config.h)
8 AC_CONFIG_AUX_DIR(config)
9 LYX_GET_VERSION(${srcdir}/src/version.h)
10
11 AC_CANONICAL_SYSTEM
12 AC_VALIDATE_CACHE_SYSTEM_TYPE
13
14 LYX_VERSION_SUFFIX
15  
16 AM_INIT_AUTOMAKE($lyxname, $VERSION)
17
18 # The list of languages known to LyX
19 # This is needed by GNU gettext
20 ALL_LINGUAS="ca cs da de es eu fi fr he hu it nl no pl pt ro ru sl sv tr wa"
21
22 AC_PREFIX_PROGRAM(lyx)
23
24 # fix the value of the prefixes.
25 test "x$prefix" = xNONE && prefix=$ac_default_prefix
26 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
27
28 ### Set the execute permissions of the various scripts correctly
29 for file in config/install-sh config/mkinstalldirs lib/configure ; do
30   chmod 755 ${srcdir}/${file}
31 done
32
33 ### Check for programs
34 AC_PROG_MAKE_SET
35 AC_PROG_INSTALL
36 #AC_PROG_RANLIB
37 AC_CHECK_PROG(KPSEWHICH, kpsewhich, kpsewhich, :)
38 if test "x$KPSEWHICH" = xkpsewhich ; then
39     AC_DEFINE(HAVE_KPSEWHICH, 1,
40     [Define this if you have the kpsewhich program working on your system.])
41 fi
42
43 # Work around a problem in automake 1.4: when invoking install-strip,
44 # INSTALL_PROGRAM is changed to 'install -s', and since
45 # INSTALL_SCRIPT==INSTALL_PROGRAM, we get errors with fileutils-4.0
46 # which returns an error condition when stripping fails.
47 INSTALL_SCRIPT='${INSTALL}'
48
49 ### we will also need a C compiler to compile GNU gettext
50 AC_PROG_CC
51
52 ### check for special systems
53 AC_ISC_POSIX
54 AC_AIX
55 LYX_HPUX
56 LYX_SUNOS4
57 LYX_SCO
58
59 ### Check for program extensions (.exe or nothing)
60 AC_EXEEXT
61
62 ### check which frontend we want to use
63 LYX_USE_FRONTEND
64 dnl The code below is not in a macro, because this would cause big
65 dnl problems with the AC_REQUIRE contained in KDE_DO_IT_ALL.
66 case "$lyx_use_frontend" in
67   gnome)
68     GNOME_INIT
69     GNOME_COMPILE_WARNINGS
70     GNOME_X_CHECKS
71 esac 
72
73 ### Check for a C++ compiler
74 AC_LANG_CPLUSPLUS
75 LYX_PROG_CXX
76 AC_PROG_CXXCPP
77 AC_DISABLE_SHARED
78 AC_LIBTOOL_WIN32_DLL
79 #AM_PROG_LIBTOOL
80 LYX_PROG_LIBTOOL
81
82 ### Some checks on what the C++ compiler can(not) do
83 dnl we do not need that currently (and probably all our supported
84 dnl compiler allow that)  
85 dnl LYX_CXX_PARTIAL
86 LYX_CXX_EXPLICIT
87 LYX_CXX_STL_STRING
88 LYX_CXX_GOOD_STD_STRING
89 LYX_CXX_CHEADERS
90 LYX_CXX_GLOBAL_CSTD
91 LYX_STD_COUNT
92 dnl we disable rtti for now
93 dnl LYX_CXX_RTTI
94 AC_CHECK_HEADERS(ostream istream sstream locale limits)
95 LYX_CXX_STL_MODERN_STREAMS
96
97 ### We need a regex implementation, so we provide our own if none is found.
98 LYX_REGEX
99
100 ### Library Files
101 dnl by testing these we check if it is ok to have
102 dnl -lc and -lm as args to the compiler
103 AC_CHECK_LIB(m, sin)
104 AC_CHECK_LIB(c, fopen)
105
106 ### Add extra directories to check for libraries.
107 LYX_WITH_DIR([extra-lib],[extra library directory],extra_lib, NONE)
108 LYX_LOOP_DIR($lyx_cv_extra_lib,LYX_ADD_LIB_DIR(lyx_ldflags,$dir))
109 test ! x"$lyx_ldflags" = x && LDFLAGS="$lyx_ldflags $LDFLAGS"
110
111 ### Add extra directories to check for include files.
112 LYX_WITH_DIR([extra-inc],[extra include directory],extra_inc, NONE)
113 LYX_LOOP_DIR($lyx_cv_extra_inc,LYX_ADD_INC_DIR(lyx_cppflags,$dir))
114 test ! x"$lyx_cppflags" = x && CPPFLAGS="$lyx_cppflags $CPPFLAGS"
115
116 ### Add both includes and libraries
117 LYX_WITH_DIR([extra-prefix],[extra lib+include directory],extra_prefix, NONE, ${prefix})
118 LYX_LOOP_DIR($lyx_cv_extra_prefix,[
119 LYX_ADD_INC_DIR(CPPFLAGS,$dir/include)
120   LYX_ADD_LIB_DIR(LDFLAGS,$dir/lib)])
121  
122 ### Check for the -liberty library
123 test "x$GXX" = xyes && lyx_use_liberty=yes
124 AC_ARG_WITH(liberty,
125   [  --without-liberty       do not try to link against libiberty.a],
126   [lyx_use_liberty=$withval])
127 if test x$lyx_use_liberty = xyes; then
128   # AC_CHECK_LIB(iberty,main,LIBS="-liberty $LIBS")
129   AC_CHECK_LIB(iberty,main)
130 fi
131
132 ### Check which libsigc++ we're using
133 LYX_WITH_SIGC
134
135 ### Check if we want pspell libraries
136 CHECK_WITH_PSPELL
137
138 ### Check for X libraries
139 # Check for the pt library (for SCO, needed for X)
140 AC_CHECK_LIB(pt,ptsname,X_EXTRA_LIBS="-lpt $X_EXTRA_LIBS")
141 # The real thing.
142 AC_PATH_XTRA
143 LIBS="$X_PRE_LIBS $LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
144 # Since solaris X headers use int as implicit return type and modern
145 # gcc's do not like that, let's use -isystem instead of -I.
146 # We should test for gcc version and see whether it supports -isystem,
147 # but since at least gcc 2.6.x supports it and it is still too old for
148 # us, it seems we are safe.
149 if test -n "$GXX" ; then
150   X_CFLAGS=`echo ${X_CFLAGS} | sed -e 's/-I/-isystem /'`
151 fi
152 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
153
154 ## Check whether X is new enough to handle the input method stuff
155 AC_CHECK_FUNCS(XOpenIM)
156
157 ### check which frontend we want to use
158 #LYX_USE_FRONTEND
159 dnl The code below is not in a macro, because this would cause big
160 dnl problems with the AC_REQUIRE contained in KDE_DO_IT_ALL.  
161 case "$lyx_use_frontend" in 
162   xforms) 
163   # for now don't set it for xforms as this is always entered
164     FRONTEND=""
165     FRONTEND_GUILIB="xforms/libxforms.la";;
166   gnome)    
167     AM_PATH_GTKMM(1.2.1,,
168         AC_MSG_ERROR(Cannot find GTK--: Please install Version 1.2.1+))
169     AM_PATH_GNOMEMM
170
171 dnl ******************************
172 dnl LibGlade checking
173 dnl ******************************
174 dnl Ensure gnome-config is available...
175         AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
176         AC_MSG_CHECKING(for Glade libraries)
177         if $GNOME_CONFIG --libs libglade > /dev/null 2>&1; then 
178         AC_MSG_RESULT(found)
179         else
180             AC_MSG_ERROR(Did not find libGlade installed)
181         fi
182                 
183     FRONTEND="gnome"
184     FRONTEND_GUILIB="gnome/libgnome.la"
185     FRONTEND_LDFLAGS="\$(GNOMEMM_LIBDIR)"
186     FRONTEND_INCLUDES="-I\${srcdir}/gnome \$(GNOMEMM_INCLUDEDIR) \$(GTKMM_CFLAGS)"
187     FRONTEND_LIBS="\$(GNOMEMM_LIBS) \$(GTKMM_LIBS) `gnome-config --libs libglade`";;
188   qt2)
189     QT2_DO_IT_ALL
190     FRONTEND="qt2"
191     FRONTEND_GUILIB="qt2/libqt2.la"
192     FRONTEND_LDFLAGS="\$(QT2_LDFLAGS)"
193     FRONTEND_INCLUDES="-I\${srcdir}/qt2 \$(QT2_INCLUDES)"
194     FRONTEND_LIBS="\$(QT2_LIBS)";;
195   *)
196     LYX_ERROR(Unknown frontend $lyx_use_frontend);;
197 esac
198
199 ### Check for xforms and xpm (only if X has been found).
200 if test "$have_x" = yes ; then
201 # We surely need these two libraries and want to check carefully the
202 # version numbers... 
203 LYX_PATH_XPM
204 LYX_PATH_XFORMS
205 AC_SUBST(LYX_LIBS)
206 else
207 LYX_ERROR(dnl
208 [Cannot find X window libraries and/or headers. Check your installation. 
209    If you use a Linux system, check that you have installed 
210    the development tools.])
211 fi
212
213 ### Setup GNU gettext
214 dnl GNU gettext is written in C
215 AC_LANG_C
216 # Some tests that may be useful for gettext
217 AC_C_CONST
218 AC_C_INLINE
219 # Do the real setup now
220 AM_GNU_GETTEXT
221 # a hack for those who try to change LyX, but do not have gettext installed 
222 case  "${XGETTEXT}" in 
223  *:) XGETTEXT='cp ${srcdir}/lyx.pot ./${PACKAGE}.po ; :'
224 esac
225
226 AC_SUBST(LINGUAS)
227
228 AC_LANG_CPLUSPLUS
229
230 # some standard header files
231 AC_HEADER_DIRENT
232 AC_HEADER_MAJOR
233 AC_CHECK_HEADERS(sys/time.h sys/types.h sys/select.h strings.h)
234
235 # some annoying header files
236 #LYX_PATH_HEADER(stl_string_fwd.h)
237 LYX_STL_STRING_FWD
238
239 # some standard structures
240 AC_HEADER_STAT
241 AC_HEADER_TIME
242 AC_STRUCT_ST_BLKSIZE
243 AC_STRUCT_ST_BLOCKS
244 AC_STRUCT_ST_RDEV
245
246 # some standard types
247 AC_TYPE_MODE_T
248 AC_TYPE_OFF_T
249 AC_TYPE_PID_T
250 AC_TYPE_SIGNAL
251 AC_TYPE_SIZE_T
252 AC_TYPE_UID_T
253
254 # some functions we'd like to have
255 AC_ARG_WITH(broken-headers,
256     [  --with-broken-headers   define some functions on SunOS4 and SCO],
257     [lyx_broken_headers=$withval])
258 if test "x$lyx_broken_headers" = "xyes"; then
259   lyx_flags="$lyx_flags broken-headers"
260   AC_DEFINE(BROKEN_HEADERS, 1,
261     [Define on SunOS 4 and SCO, were some functions are missing from the headers])
262 fi
263 AC_CHECK_FUNCS(snprintf vsnprintf)
264 LYX_CHECK_DECL(snprintf, stdio.h)
265 LYX_CHECK_DECL(vsnprintf, stdio.h)
266 LYX_CHECK_DECL(istreambuf_iterator, iterator)
267
268 AC_CHECK_FUNCS(memmove memset strchr putenv setenv mkfifo \
269   mkstemp mktemp)
270
271 dnl Until this is fixed in autoconf we provide our own version
272 LYX_FUNC_SELECT_ARGTYPES
273
274 dnl check whether we have to work around solaris broken putenv()
275 LYX_FUNC_PUTENV_ARGTYPE
276
277 # SunOS 4.1.3 does not have strerror and atexit
278 AC_REPLACE_FUNCS(strerror atexit)
279
280 LYX_CHECK_DECL_HDRS(mkstemp,[unistd.h stdlib.h])
281
282 ### and now some special lyx flags.
283 AC_ARG_ENABLE(assertions,
284   [  --enable-assertions     add runtime sanity checks in the program],,
285   [if test $lyx_devel_version = yes -o $lyx_prerelease = yes ; then
286         enable_assertions=yes;
287     else
288         enable_assertions=no;
289     fi;])
290 if test "x$enable_assertions" = xyes ; then
291    lyx_flags="$lyx_flags assertions"
292    AC_DEFINE(ENABLE_ASSERTIONS,1,
293     [Define if you want assertions to be enabled in the code])
294 fi
295
296 ### Finish the work.
297 AC_CONFIG_SUBDIRS(sigc++ lib lib/reLyX)
298 AC_OUTPUT([Makefile \
299        boost/Makefile \
300        development/lyx.spec \
301        lib/Makefile \
302        intl/Makefile \
303        po/Makefile.in \
304        sourcedoc/Doxyfile \
305        src/Makefile \
306        src/mathed/Makefile \
307        src/graphics/Makefile \
308        src/insets/Makefile \
309        src/support/Makefile \
310        src/frontends/Makefile \
311        src/frontends/support/Makefile \
312        src/frontends/controllers/Makefile \
313        src/frontends/xforms/Makefile \
314        src/frontends/qt2/Makefile \
315        src/frontends/gnome/Makefile \
316 ])
317
318
319 cat <<EOF
320
321 Configuration:
322   Source code location:       ${srcdir}
323   C++ Compiler:                   ${CXX}
324   C++ Compiler flags:             ${CXXFLAGS}
325   C   Compiler:                   ${CC}
326   C   Compiler flags:             ${CFLAGS}
327   LyX binary dir:             `eval "echo \`eval \"echo ${bindir}\"\`"`
328   LyX files dir:              `eval "echo \`eval \"echo ${datadir}/${PACKAGE}\"\`"`
329   Special flags:              ${lyx_flags}
330
331 EOF
332
333 # Display a final warning if there has been a LYX_ERROR
334 LYX_CHECK_ERRORS