Added the postgres reader. Closes patch #6388
[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 PKG_PROG_PKG_CONFIG
17
18 PSPP_ENABLE_OPTION(-Wdeclaration-after-statement)
19
20 AM_CONDITIONAL(cc_is_gcc, test x"$GCC" = x"yes" )
21
22 PSPP_CC_FOR_BUILD
23 PSPP_PERL
24
25 dnl Internationalization macros.
26 AM_GNU_GETTEXT([external], [need-ngettext])
27 AM_GNU_GETTEXT_VERSION([0.16.1])
28
29 dnl Checks for libraries.
30 AC_SYS_LARGEFILE
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(
38   gui, 
39   [AS_HELP_STRING([--without-gui], [don't build the PSPPIRE gui])])
40
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)])])
46 fi
47 AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no")
48
49
50 dnl Checks needed for psql reader
51 AC_CHECK_PROG(psql_support, pg_config, yes, no)
52 if test x"$psql_support" = x"yes" ; then 
53    AC_DEFINE([PSQL_SUPPORT], 1,
54    [Define to 1 if building in support for reading from postgres databases.])
55    PG_CFLAGS=-I`pg_config --includedir` 
56    AC_SUBST(PG_CFLAGS)
57    PG_LDFLAGS=-L`pg_config --libdir`
58    AC_SUBST(PG_LDFLAGS)
59    PG_LIBS=-lpq
60    AC_SUBST(PG_LIBS)
61 fi
62 AM_CONDITIONAL(PSQL_SUPPORT, test x"$psql_support" = x"yes")
63
64 dnl Checks needed for gnumeric reader
65 gnm_support=yes;
66 PKG_CHECK_MODULES(LIBXML2, libxml-2.0,,
67                            [PSPP_OPTIONAL_PREREQ([libxml2]); gnm_support=no;]);
68 AC_SEARCH_LIBS(gzopen,z,,[PSPP_OPTIONAL_PREREQ([zlib]); gnm_support=no;])
69 AC_CHECK_HEADERS(zlib.h,,[PSPP_OPTIONAL_PREREQ([zlib]); gnm_support=no;])
70
71 if test x"$gnm_support" = x"yes" ; then 
72    AC_DEFINE([GNM_SUPPORT], 1,
73    [Define to 1 if building in support for reading Gnumeric files.])
74 fi
75 AM_CONDITIONAL(GNM_SUPPORT, test x"$gnm_support" = x"yes")
76
77 AC_ARG_WITH(
78   gui_tools,
79   [AS_HELP_STRING([--with-gui-tools], [build the gui developer tools])])
80 if test x"$with_gui_tools" = x"yes" ; then 
81         PKG_CHECK_MODULES(GLADE_UI, gladeui-1.0)
82 fi
83 AM_CONDITIONAL(WITH_GUI_TOOLS, test x"$with_gui_tools" = x"yes")
84
85 AC_CHECK_LIB(gslcblas,main,,[PSPP_REQUIRED_PREREQ([libgslcblas])])
86 AC_CHECK_LIB(gsl, gsl_cdf_chisq_Q,,[PSPP_REQUIRED_PREREQ([libgsl (version 1.4 or later)])])
87
88 AC_CHECK_LIB(ncurses, tgetent)
89 AC_CHECK_HEADERS(termcap.h)
90
91 PSPP_READLINE
92
93 dnl Checks for header files.
94 AC_CHECK_HEADERS([sys/wait.h fpu_control.h ieeefp.h fenv.h])
95
96 # For gnulib.
97 gl_INIT
98
99 AC_C_INLINE
100
101 AC_CHECK_SIZEOF(double)
102
103 AC_C_BIGENDIAN
104
105 AC_CHECK_FUNCS([__setfpucw fork execl execlp isinf isnan finite getpid feholdexcept fpsetmask popen round])
106
107 AC_PROG_LN_S
108
109 AC_ARG_ENABLE(
110   debug, 
111   [AS_HELP_STRING([--enable-debug], 
112                   [Turn on diagnostic features in the program])])
113 if test x"$enable_debug" = x"yes"  ; then
114   AC_DEFINE(DEBUGGING, 1, [Define to 1 if debugging is enabled.])
115 fi
116
117 # iconv is required
118 if test "$am_cv_func_iconv" != "yes"; then
119    PSPP_REQUIRED_PREREQ([iconv (see http://www.gnu.org/software/libiconv/)])
120 fi
121
122 PSPP_CHECK_PREREQS
123
124 AC_CONFIG_FILES([Makefile gl/Makefile po/Makefile.in])
125
126 AC_OUTPUT
127 echo "PSPP configured successfully."
128
129 dnl configure.ac ends here