1 dnl Process this file with autoconf to produce a configure script.
5 AC_INIT(pspp, 0.4.3,bug-gnu-pspp@gnu.org)
6 AC_CONFIG_HEADERS([config.h])
9 dnl Checks for programs.
18 PSPP_ENABLE_OPTION(-Wdeclaration-after-statement)
20 AM_CONDITIONAL(cc_is_gcc, test x"$GCC" = x"yes" )
25 dnl Internationalization macros.
26 AM_GNU_GETTEXT([external], [need-ngettext])
27 AM_GNU_GETTEXT_VERSION([0.16.1])
29 dnl Checks for libraries.
34 AM_CONDITIONAL(WITHCHARTS, test x"$with_libplot" != x"no")
39 [AS_HELP_STRING([--without-gui], [don't build the PSPPIRE gui])])
41 if test x"$with_gui" != x"no" ; then
42 PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.8.0,,
43 [PSPP_REQUIRED_PREREQ([gtk+ 2.0 v2.8.0 or later (or use --without-gui)])])
44 PKG_CHECK_MODULES(GLADE, libglade-2.0 >= 2.6.0,,
45 [PSPP_REQUIRED_PREREQ([libglade 2.0 (or use --without-gui)])])
47 AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no")
50 dnl Checks needed for gnumeric reader
52 PKG_CHECK_MODULES(LIBXML2, libxml-2.0,,
53 [PSPP_OPTIONAL_PREREQ([libxml2]); gnm_support=no;]);
54 AC_SEARCH_LIBS(gzopen,z,,[PSPP_OPTIONAL_PREREQ([zlib]); gnm_support=no;])
55 AC_CHECK_HEADERS(zlib.h,,[PSPP_OPTIONAL_PREREQ([zlib]); gnm_support=no;])
57 if test x"$gnm_support" = x"yes" ; then
58 AC_DEFINE([GNM_SUPPORT], 1,
59 [Define to 1 if building in support for reading Gnumeric files.])
61 AM_CONDITIONAL(GNM_SUPPORT, test x"$gnm_support" = x"yes")
65 [AS_HELP_STRING([--with-gui-tools], [build the gui developer tools])])
66 if test x"$with_gui_tools" = x"yes" ; then
67 PKG_CHECK_MODULES(GLADE_UI, gladeui-1.0)
69 AM_CONDITIONAL(WITH_GUI_TOOLS, test x"$with_gui_tools" = x"yes")
71 AC_CHECK_LIB(gslcblas,main,,[PSPP_REQUIRED_PREREQ([libgslcblas])])
72 AC_CHECK_LIB(gsl, gsl_cdf_chisq_Q,,[PSPP_REQUIRED_PREREQ([libgsl (version 1.4 or later)])])
74 AC_CHECK_LIB(ncurses, tgetent)
75 AC_CHECK_HEADERS(termcap.h)
79 dnl Checks for header files.
80 AC_CHECK_HEADERS([sys/wait.h fpu_control.h ieeefp.h fenv.h])
87 AC_CHECK_SIZEOF(double)
91 AC_CHECK_FUNCS([__setfpucw fork execl execlp isinf isnan finite getpid feholdexcept fpsetmask popen round])
97 [AS_HELP_STRING([--enable-debug],
98 [Turn on diagnostic features in the program])])
99 if test x"$enable_debug" = x"yes" ; then
100 AC_DEFINE(DEBUGGING, 1, [Define to 1 if debugging is enabled.])
104 if test "$am_cv_func_iconv" != "yes"; then
105 PSPP_REQUIRED_PREREQ([iconv (see http://www.gnu.org/software/libiconv/)])
110 AC_CONFIG_FILES([Makefile gl/Makefile po/Makefile.in])
113 echo "PSPP configured successfully."
115 dnl configure.ac ends here