Update libglade version dependency
[pspp-builds.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl Initialize.
4 AX_PREREQ(2.60)
5 AC_INIT(pspp, 0.4.3,bug-gnu-pspp@gnu.org)
6 AC_CONFIG_HEADERS([config.h])
7 AM_INIT_AUTOMAKE
8
9 dnl Checks for programs.
10 AC_GNU_SOURCE
11 AC_PROG_CC
12 gl_EARLY
13 AM_PROG_CC_C_O
14 AC_LIBTOOL_DLOPEN
15 AC_PROG_LIBTOOL
16
17 PSPP_ENABLE_OPTION(-Wdeclaration-after-statement)
18
19 AM_CONDITIONAL(cc_is_gcc, test x"$GCC" = x"yes" )
20
21 PSPP_CC_FOR_BUILD
22 PSPP_PERL
23
24 dnl Internationalization macros.
25 AM_GNU_GETTEXT([external], [need-ngettext])
26 AM_GNU_GETTEXT_VERSION([0.16.1])
27
28 dnl Checks for libraries.
29 AC_SYS_LARGEFILE
30 AC_FUNC_FSEEKO
31 AC_CHECK_LIB(m, sin)
32 PSPP_LIBPLOT
33 PSPP_LC_PAPER
34 AM_CONDITIONAL(WITHCHARTS, test x"$with_libplot" != x"no")
35
36
37 AC_ARG_WITH(gui, [  --without-gui         don't build the PSPPIRE gui])
38
39 if test x"$with_gui" != x"no" ; then 
40   PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.8.0,,
41     [PSPP_REQUIRED_PREREQ([gtk+ 2.0 v2.8.0 or later (or use --without-gui)])])
42   PKG_CHECK_MODULES(GLADE, libglade-2.0 >= 2.6.0,,
43     [PSPP_REQUIRED_PREREQ([libglade 2.0 (or use --without-gui)])])
44 fi
45 AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no")
46
47 AC_ARG_WITH(gui_tools, [  --with-gui-tools          build the gui developer tools])
48 if test x"$with_gui_tools" = x"yes" ; then 
49         PKG_CHECK_MODULES(GLADE_UI, gladeui-1.0)
50 fi
51 AM_CONDITIONAL(WITH_GUI_TOOLS, test x"$with_gui_tools" = x"yes")
52
53 PSPP_OFF_T
54
55 AC_CHECK_LIB(gslcblas,main,,[PSPP_REQUIRED_PREREQ([libgslcblas])])
56 AC_CHECK_LIB(gsl, gsl_cdf_chisq_Q,,[PSPP_REQUIRED_PREREQ([libgsl (version 1.4 or later)])])
57
58 AC_CHECK_LIB(ncurses, tgetent)
59 AC_CHECK_HEADERS(termcap.h)
60
61 PSPP_READLINE
62
63 dnl Checks for header files.
64 AC_CHECK_HEADERS([limits.h memory.h sys/stat.h sys/time.h sys/types.h \
65                   fpu_control.h sys/mman.h sys/wait.h ieeefp.h fenv.h] )
66
67 # For gnulib.
68 gl_INIT
69
70 AC_C_CONST
71 AC_C_INLINE
72
73 dnl  Dont use AC_TYPE_OFF_T --- it doesnt generate the HAVE_TYPE macro
74 AC_CHECK_TYPES(off_t) 
75 AC_CHECK_SIZEOF(float, 0)
76 AC_CHECK_SIZEOF(double, 8)
77 AC_CHECK_SIZEOF(long double, 0)
78
79 AC_DEFINE(FPREP_IEEE754, 1,
80         [Define for machines that have IEEE 754 floating point arithmetic,
81          the most common format today.])
82
83 AC_C_BIGENDIAN
84
85 AC_FUNC_VPRINTF
86 AC_CHECK_FUNCS([__setfpucw execl fork isinf isnan finite getpid feholdexcept fpsetmask popen round trunc])
87
88 AC_PROG_LN_S
89
90 dnl This is needed otherwise --with-included-gettext fails
91 AH_BOTTOM([#include <locale.h>])
92
93 AC_ARG_ENABLE(debug, [  --enable-debug          Turn on diagnostic features in the program])
94 if test x"$enable_debug" = x"yes"  ; then
95   AC_DEFINE(DEBUGGING, 1, [Define to 1 if debugging is enabled.])
96 fi
97
98 # iconv is required
99 if test "$am_cv_func_iconv" != "yes"; then
100    PSPP_REQUIRED_PREREQ([iconv (see http://www.gnu.org/software/libiconv/)])
101 fi
102
103 PSPP_CHECK_PREREQS
104
105 AC_CONFIG_FILES([Makefile gl/Makefile po/Makefile.in])
106
107 AC_OUTPUT
108 echo "PSPP configured successfully."
109
110 dnl configure.ac ends here