Fix gnulib problems.
[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.57)
5 AC_INIT(pspp, 0.4.0,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 AC_PROG_RANLIB
14
15 AM_CONDITIONAL(cc_is_gcc, test x"$GCC" = x"yes" )
16
17 dnl Check that Perl is available.
18 AC_PATH_PROG([PERL], perl, no)
19 AC_SUBST([PERL])dnl
20 if test "$PERL" = no; then
21   AC_MSG_ERROR([perl is not found])
22 fi
23 $PERL -e 'require 5.005_03;' || {
24    AC_MSG_ERROR([Perl 5.005_03 or better is required])
25 }
26
27 dnl Internationalization macros.
28 AM_GNU_GETTEXT
29 AM_GNU_GETTEXT_VERSION([0.14.5])
30
31 dnl Checks for libraries.
32 AC_SYS_LARGEFILE
33 AC_FUNC_FSEEKO
34 AC_CHECK_LIB(m, sin)
35 AC_ARG_WITH(libplot, [  --without-libplot         don't compile in support of charts (using libplot)])
36
37 if test x"$with_libplot" != x"no" ; then 
38         AC_CHECK_LIB(plot, pl_newpl_r,,
39           AC_MSG_ERROR([You must install libplot (or use --without-libplot)])
40         )
41 fi
42 AM_CONDITIONAL(WITHCHARTS, test x"$with_libplot" != x"no")
43
44 dnl Check that off_t is defined as an integer type.
45 dnl Solaris sometimes declares it as a struct, if it
46 dnl thinks that the compiler does not support `long long'.
47 AC_COMPILE_IFELSE([#include <sys/types.h>
48 #include <unistd.h>
49 off_t x = 0;
50 int main (void) 
51
52   lseek (0, 1, 2);
53   return 0;
54 }], [], [AC_MSG_ERROR(
55 [Your system's definition of off_t is broken.  You are probably
56 using Solaris.  You can probably fix the problem with
57 `--disable-largefile' or `CFLAGS=-ansi'.])])
58
59 AC_CHECK_LIB(gslcblas,main,,AC_MSG_ERROR([You must install libgslcblas]))
60 AC_CHECK_LIB(gsl, gsl_cdf_chisq_Q,,
61   AC_MSG_ERROR([You must install libgsl version 1.4 or later]))
62
63 AC_ARG_WITH(ncurses,
64 [  --without-ncurses         don't compile in ncurses command line editing])
65
66 if test "x$with_ncurses" = x"yes"; then 
67 AC_CHECK_LIB(ncurses, tgetent, LIBS="-lncurses $LIBS" termcap=yes,
68   AC_CHECK_LIB(termcap, tgetent, LIBS="-ltermcap $LIBS" termcap=yes,
69                termcap=no))
70 fi
71
72 if test "$termcap" = yes; then
73   AC_CHECK_HEADERS(termcap.h)
74   AC_DEFINE(HAVE_LIBTERMCAP, 1, 
75         [Define if you have the termcap library (-ltermcap).])
76 fi
77
78 AC_CHECK_LIB(readline, readline)
79 if test "$ac_cv_lib_readline_readline" = yes; then
80   AC_CHECK_HEADERS(readline/readline.h)
81   AC_CHECK_LIB(readline, add_history, history=yes,
82     AC_CHECK_LIB(history, add_history, LIBS="-lhistory" history=yes,
83                  history=no))
84   if test "$history" = yes; then
85     AC_CHECK_HEADERS(readline/history.h)
86     AC_DEFINE(HAVE_LIBHISTORY, 1,
87         [Define if you have the history library (-lhistory).])
88   fi
89 fi
90
91 dnl Checks for header files.
92 AC_ARG_WITH(valgrind, [  --without-valgrind        don't compile in valgrind])
93 if test "x$with_valgrind" != x"no"; then 
94  AC_CHECK_HEADERS([valgrind/valgrind.h])
95 fi
96 AC_CHECK_HEADERS([limits.h memory.h sys/stat.h sys/time.h sys/types.h \
97                   fpu_control.h sys/mman.h sys/wait.h ieeefp.h fenv.h] )
98
99 # For gnulib.
100 gl_INIT
101
102 AC_C_CONST
103 AC_C_INLINE
104
105 dnl  Dont use AC_TYPE_OFF_T --- it doesnt generate the HAVE_TYPE macro
106 AC_CHECK_TYPES(off_t) 
107 AC_CHECK_SIZEOF(short, 2)
108 AC_CHECK_SIZEOF(int, 4)
109 AC_CHECK_SIZEOF(long, 4)
110 AC_CHECK_SIZEOF(long long, 0)
111 AC_CHECK_SIZEOF(float, 0)
112 AC_CHECK_SIZEOF(double, 8)
113 AC_CHECK_SIZEOF(long double, 0)
114
115 AC_DEFINE(FPREP_IEEE754, 1,
116         [Define for machines that have IEEE 754 floating point arithmetic,
117          the most common format today.])
118
119 AC_C_BIGENDIAN
120
121 BLP_IS_SPRINTF_GOOD
122 BLP_INT_DIGITS
123 BLP_RANDOM
124
125 AC_FUNC_VPRINTF
126 AC_CHECK_FUNCS([strchr strrchr __setfpucw isinf isnan finite getpid feholdexcept])
127
128 AC_PROG_LN_S
129
130
131 AH_BOTTOM([#include <pref.h>])
132
133
134 AM_CONDITIONAL(unix, test x"$host_os" != x"msdos" )
135 AM_CONDITIONAL(msdos, test x"$host_os" = x"msdos" )
136
137 dnl This is needed otherwise --with-included-gettext fails
138 AH_BOTTOM([#include <locale.h>])
139
140 AC_ARG_ENABLE(debug, [  --enable-debug          Turn on diagnostic features in the program])
141 if test x"$enable_debug" = x"yes"  ; then
142   AC_DEFINE(DEBUGGING, 1, [Define to 1 if debugging is enabled.])
143 fi
144
145 AC_CONFIG_FILES([Makefile m4/Makefile gl/Makefile intl/Makefile po/Makefile.in
146                  lib/Makefile lib/gsl-extras/Makefile
147                  doc/Makefile 
148                  src/Makefile src/expressions/Makefile
149                  config/Makefile
150                  tests/Makefile])
151 AC_CONFIG_COMMANDS([pref.h],[
152            # Copy pref.h from pref.h.orig if prudent
153            if test ! -f pref.h; then
154              echo "creating pref.h"
155              cp $ac_given_srcdir/pref.h.orig pref.h
156            elif test "`ls -t pref.h.orig pref.h 2>/dev/null | sed 1q`" = pref.h.orig; then
157              echo "replacing pref.h with newer pref.h.orig"
158              cp $ac_given_srcdir/pref.h.orig pref.h
159            else
160              echo "pref.h exists"
161            fi
162            if test -f pref.h; then touch pref.h; fi
163           ])
164 AC_OUTPUT
165
166 dnl configure.ac ends here