]> git.lyx.org Git - features.git/blob - configure.in
aik fix
[features.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 ### Some checks on what the C++ compiler can(not) do
78 dnl we do not need that currently (and probably all our supported
79 dnl compiler allow that)  
80 dnl LYX_CXX_PARTIAL
81 LYX_CXX_EXPLICIT
82 LYX_CXX_STL_STRING
83 LYX_CXX_GOOD_STD_STRING
84 LYX_CXX_CHEADERS
85 LYX_CXX_GLOBAL_CSTD
86 LYX_STD_COUNT
87 dnl we disable rtti for now
88 dnl LYX_CXX_RTTI
89 AC_CHECK_HEADERS(ostream istream sstream locale limits)
90 LYX_CXX_STL_MODERN_STREAMS
91
92 ### and now some special lyx flags.
93 AC_ARG_ENABLE(assertions,
94   [  --enable-assertions     add runtime sanity checks in the program],,
95   [if test $lyx_devel_version = yes -o $lyx_prerelease = yes ; then
96         enable_assertions=yes;
97     else
98         enable_assertions=no;
99     fi;])
100 if test "x$enable_assertions" = xyes ; then
101    lyx_flags="$lyx_flags assertions"
102    AC_DEFINE(ENABLE_ASSERTIONS,1,
103     [Define if you want assertions to be enabled in the code])
104 fi
105
106 ### We need a regex implementation, so we provide our own if none is found.
107 LYX_REGEX
108
109 ### Library Files
110 dnl by testing these we check if it is ok to have
111 dnl -lc and -lm as args to the compiler
112 AC_CHECK_LIB(m, sin)
113 AC_CHECK_LIB(c, fopen)
114 AC_ARG_WITH(aiksaurus,
115   [  --without-aiksaurus     do not use the AikSaurus library],
116   [lyx_use_aiksaurus=$withval])
117 if test x$lyx_use_aiksaurus != xno; then
118 AC_CHECK_LIB(bz2, main)
119 AC_CHECK_LIB(AikSaurus, main, 
120         [AC_DEFINE(HAVE_LIBAIKSAURUS,,[Define this if you have the AikSaurus library])
121          AIKSAURUS_LIBS="-lAikSaurus"
122         ])
123 fi 
124 AC_SUBST(AIKSAURUS_LIBS)
125
126 ### Add extra directories to check for libraries.
127 LYX_WITH_DIR([extra-lib],[extra library directory],extra_lib, NONE)
128 LYX_LOOP_DIR($lyx_cv_extra_lib,LYX_ADD_LIB_DIR(lyx_ldflags,$dir))
129 test ! x"$lyx_ldflags" = x && LDFLAGS="$lyx_ldflags $LDFLAGS"
130
131 ### Add extra directories to check for include files.
132 LYX_WITH_DIR([extra-inc],[extra include directory],extra_inc, NONE)
133 LYX_LOOP_DIR($lyx_cv_extra_inc,LYX_ADD_INC_DIR(lyx_cppflags,$dir))
134 test ! x"$lyx_cppflags" = x && CPPFLAGS="$lyx_cppflags $CPPFLAGS"
135
136 ### Add both includes and libraries
137 LYX_WITH_DIR([extra-prefix],[extra lib+include directory],extra_prefix, NONE, ${prefix})
138 LYX_LOOP_DIR($lyx_cv_extra_prefix,[
139 LYX_ADD_INC_DIR(CPPFLAGS,$dir/include)
140   LYX_ADD_LIB_DIR(LDFLAGS,$dir/lib)])
141  
142 ### Check for the -liberty library
143 test "x$GXX" = xyes && lyx_use_liberty=yes
144 AC_ARG_WITH(liberty,
145   [  --without-liberty       do not try to link against libiberty.a],
146   [lyx_use_liberty=$withval])
147 if test x$lyx_use_liberty = xyes; then
148   # AC_CHECK_LIB(iberty,main,LIBS="-liberty $LIBS")
149   AC_CHECK_LIB(iberty,main)
150 fi
151
152 ### Setup libtool
153 AC_DISABLE_SHARED
154 AC_LIBTOOL_WIN32_DLL
155 #AM_PROG_LIBTOOL
156 LYX_PROG_LIBTOOL
157
158 ### Check which libsigc++ we're using
159 LYX_WITH_SIGC
160
161 ### Check if we want pspell libraries
162 CHECK_WITH_PSPELL
163
164 ### Check for X libraries
165 # Check for the pt library (for SCO, needed for X)
166 AC_CHECK_LIB(pt,ptsname,X_EXTRA_LIBS="-lpt $X_EXTRA_LIBS")
167 # The real thing.
168 AC_PATH_XTRA
169 LIBS="$X_PRE_LIBS $LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
170 # Since solaris X headers use int as implicit return type and modern
171 # gcc's do not like that, let's use -isystem instead of -I.
172 # We should test for gcc version and see whether it supports -isystem,
173 # but since at least gcc 2.6.x supports it and it is still too old for
174 # us, it seems we are safe.
175 if test -n "$GXX" ; then
176   X_CFLAGS=`echo ${X_CFLAGS} | sed -e 's/-I/-isystem /'`
177 fi
178 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
179
180 ## Check whether X is new enough to handle the input method stuff
181 AC_CHECK_FUNCS(XOpenIM)
182
183 ### check which frontend we want to use
184 #LYX_USE_FRONTEND
185 dnl The code below is not in a macro, because this would cause big
186 dnl problems with the AC_REQUIRE contained in KDE_DO_IT_ALL.  
187 case "$lyx_use_frontend" in 
188   xforms) 
189   # for now don't set it for xforms as this is always entered
190     FRONTEND=""
191     FRONTEND_GUILIB="xforms/libxforms.la";;
192   gnome)    
193     AM_PATH_GTKMM(1.2.1,,
194         AC_MSG_ERROR(Cannot find GTK--: Please install Version 1.2.1+))
195     AM_PATH_GNOMEMM
196
197 dnl ******************************
198 dnl LibGlade checking
199 dnl ******************************
200 dnl Ensure gnome-config is available...
201         AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
202         AC_MSG_CHECKING(for Glade libraries)
203         if $GNOME_CONFIG --libs libglade > /dev/null 2>&1; then 
204         AC_MSG_RESULT(found)
205         else
206             AC_MSG_ERROR(Did not find libGlade installed)
207         fi
208                 
209     FRONTEND="gnome"
210     FRONTEND_GUILIB="gnome/libgnome.la"
211     FRONTEND_LDFLAGS="\$(GNOMEMM_LIBDIR)"
212     FRONTEND_INCLUDES="-I\${srcdir}/gnome \$(GNOMEMM_INCLUDEDIR) \$(GTKMM_CFLAGS)"
213     FRONTEND_LIBS="\$(GNOMEMM_LIBS) \$(GTKMM_LIBS) `gnome-config --libs libglade`";;
214   qt2)
215     QT2_DO_IT_ALL
216     FRONTEND="qt2"
217     FRONTEND_GUILIB="qt2/libqt2.la"
218     FRONTEND_LDFLAGS="\$(QT2_LDFLAGS)"
219     FRONTEND_INCLUDES="-I\${srcdir}/qt2 \$(QT2_INCLUDES)"
220     FRONTEND_LIBS="\$(QT2_LIBS)";;
221   *)
222     LYX_ERROR(Unknown frontend $lyx_use_frontend);;
223 esac
224
225 ### Check for xforms and xpm (only if X has been found).
226 if test "$have_x" = yes ; then
227 # We surely need these two libraries and want to check carefully the
228 # version numbers... 
229 LYX_PATH_XPM
230 LYX_PATH_XFORMS
231 AC_SUBST(LYX_LIBS)
232 else
233 LYX_ERROR(dnl
234 [Cannot find X window libraries and/or headers. Check your installation. 
235    If you use a Linux system, check that you have installed 
236    the development tools.])
237 fi
238
239 ### Setup GNU gettext
240 dnl GNU gettext is written in C
241 AC_LANG_C
242 # Some tests that may be useful for gettext
243 AC_C_CONST
244 AC_C_INLINE
245 # Do the real setup now
246 AM_GNU_GETTEXT
247 # a hack for those who try to change LyX, but do not have gettext installed 
248 case  "${XGETTEXT}" in 
249  *:) XGETTEXT='cp ${srcdir}/lyx.pot ./${PACKAGE}.po ; :'
250 esac
251
252 AC_SUBST(LINGUAS)
253
254 AC_LANG_CPLUSPLUS
255
256 # some standard header files
257 AC_HEADER_DIRENT
258 AC_HEADER_MAJOR
259 AC_CHECK_HEADERS(sys/time.h sys/types.h sys/select.h strings.h)
260
261 # some annoying header files
262 #LYX_PATH_HEADER(stl_string_fwd.h)
263 LYX_STL_STRING_FWD
264
265 # some standard structures
266 AC_HEADER_STAT
267 AC_HEADER_TIME
268 AC_STRUCT_ST_BLKSIZE
269 AC_STRUCT_ST_BLOCKS
270 AC_STRUCT_ST_RDEV
271
272 # some standard types
273 AC_TYPE_MODE_T
274 AC_TYPE_OFF_T
275 AC_TYPE_PID_T
276 AC_TYPE_SIGNAL
277 AC_TYPE_SIZE_T
278 AC_TYPE_UID_T
279
280 # some functions we'd like to have
281 AC_ARG_WITH(broken-headers,
282     [  --with-broken-headers   define some functions on SunOS4 and SCO],
283     [lyx_broken_headers=$withval])
284 if test "x$lyx_broken_headers" = "xyes"; then
285   lyx_flags="$lyx_flags broken-headers"
286   AC_DEFINE(BROKEN_HEADERS, 1,
287     [Define on SunOS 4 and SCO, were some functions are missing from the headers])
288 fi
289 AC_CHECK_FUNCS(snprintf vsnprintf)
290 LYX_CHECK_DECL(snprintf, stdio.h)
291 LYX_CHECK_DECL(vsnprintf, stdio.h)
292 LYX_CHECK_DECL(istreambuf_iterator, iterator)
293
294 AC_CHECK_FUNCS(memmove memset strchr putenv setenv mkfifo \
295   mkstemp mktemp)
296
297 dnl Until this is fixed in autoconf we provide our own version
298 LYX_FUNC_SELECT_ARGTYPES
299
300 dnl check whether we have to work around solaris broken putenv()
301 LYX_FUNC_PUTENV_ARGTYPE
302
303 # SunOS 4.1.3 does not have strerror and atexit
304 AC_REPLACE_FUNCS(strerror atexit)
305
306 LYX_CHECK_DECL_HDRS(mkstemp,[unistd.h stdlib.h])
307
308 ### Finish the work.
309 AC_CONFIG_SUBDIRS(sigc++ lib lib/reLyX)
310 AC_OUTPUT([Makefile \
311        boost/Makefile \
312        development/lyx.spec \
313        lib/Makefile \
314        intl/Makefile \
315        po/Makefile.in \
316        sourcedoc/Doxyfile \
317        src/Makefile \
318        src/mathed/Makefile \
319        src/graphics/Makefile \
320        src/insets/Makefile \
321        src/support/Makefile \
322        src/frontends/Makefile \
323        src/frontends/support/Makefile \
324        src/frontends/controllers/Makefile \
325        src/frontends/xforms/Makefile \
326        src/frontends/qt2/Makefile \
327        src/frontends/gnome/Makefile \
328 ])
329
330
331 cat <<EOF
332
333 Configuration:
334   Source code location:       ${srcdir}
335   C++ Compiler:                   ${CXX}
336   C++ Compiler flags:             ${CXXFLAGS}
337   C   Compiler:                   ${CC}
338   C   Compiler flags:             ${CFLAGS}
339   LyX binary dir:             `eval "echo \`eval \"echo ${bindir}\"\`"`
340   LyX files dir:              `eval "echo \`eval \"echo ${datadir}/${PACKAGE}\"\`"`
341   Special flags:              ${lyx_flags}
342
343 EOF
344
345 # Display a final warning if there has been a LYX_ERROR
346 LYX_CHECK_ERRORS