X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure.ac;h=00e7e9f0a0a9e280fadbeb6dc466c82cad05ba3f;hb=6a3df478c6eb1999a1c5c5e05abe724e50086533;hp=345ac46bd4569a418458cea29f00066277161388;hpb=d75247c28e0dce9c21070e4ee14fdc6a2338fb77;p=pspp-builds.git diff --git a/configure.ac b/configure.ac index 345ac46b..00e7e9f0 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. dnl Initialize. AC_PREREQ(2.60) -AC_INIT([pspp],[0.7.0],[bug-gnu-pspp@gnu.org]) +AC_INIT([pspp],[0.7.2],[bug-gnu-pspp@gnu.org]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE @@ -54,12 +54,20 @@ required_gtk_version=2.12 if test x"$with_gui" != x"no" ; then PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $required_gtk_version,, [PSPP_REQUIRED_PREREQ([gtk+ 2.0 v$required_gtk_version or later (or use --without-gui)])]) - PKG_CHECK_MODULES(GLADE, libglade-2.0 >= 2.6.0,, - [PSPP_REQUIRED_PREREQ([libglade 2.0 v2.6.0 or later (or use --without-gui)])]) fi AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no") +PKG_CHECK_MODULES([CAIRO], [cairo >= 1.8 pango pangocairo], + [HAVE_CAIRO=yes + CPPFLAGS="$CPPFLAGS $CAIRO_CFLAGS" + LIBS="$LIBPLOT_LIBS $LIBS" + AC_DEFINE([HAVE_CAIRO], 1, + [Define to 1 if Cairo and Pango are available.])], + [HAVE_CAIRO=no + PSPP_OPTIONAL_PREREQ([cairo 1.8 or later])]) +AM_CONDITIONAL([HAVE_CAIRO], [test $HAVE_CAIRO = yes]) + dnl Checks needed for psql reader dnl The 8.x series postgres tarballs installs with a default prefix of @@ -129,6 +137,8 @@ if test x"$with_gui_tools" = x"yes" ; then fi AM_CONDITIONAL(WITH_GUI_TOOLS, test x"$with_gui_tools" = x"yes") +AM_CONDITIONAL(WITH_PERL_MODULE, test x"$cross_compiling" != x"yes") + AC_SEARCH_LIBS([cblas_dsdot], [gslcblas],,[PSPP_REQUIRED_PREREQ([libgslcblas])]) AC_SEARCH_LIBS([gsl_cdf_binomial_P], [gsl],,[PSPP_REQUIRED_PREREQ([libgsl (version 1.8 or later)])]) PSPP_GSL_NEEDS_FGNU89_INLINE