X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=4fa093d71f8ce57133bf453fd0da87811fb12b9b;hb=c13375ebe886fc3ed5ce70a260bb2b01cebb4b1f;hp=a85e57bd5b7b189b94bf27d37e317b41d0e54b02;hpb=e570d24a8288851690db14199143d34e6d55a331;p=pspp-builds.git diff --git a/configure.ac b/configure.ac index a85e57bd..4fa093d7 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,6 @@ AM_GNU_GETTEXT_VERSION([0.16.1]) dnl Checks for libraries. AC_SYS_LARGEFILE -AC_FUNC_FSEEKO AC_CHECK_LIB(m, sin) PSPP_LIBPLOT PSPP_LC_PAPER @@ -46,6 +45,19 @@ if test x"$with_gui" != x"no" ; then fi AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no") + +dnl Checks needed for gnumeric reader +gnm_support=yes; +PKG_CHECK_MODULES(LIBXML2, libxml-2.0,, + [PSPP_OPTIONAL_PREREQ([libxml2]); gnm_support=no]); +AC_SEARCH_LIBS(gzopen,z,,[PSPP_OPTIONAL_PREREQ([zlib]); gnm_support=no;]) +AC_CHECK_HEADERS(zlib.h,,[PSPP_OPTIONAL_PREREQ([zlib]); gnm_support=no;]) + +if test x"$gnm_support" = x"yes" ; then + AC_DEFINE([GNM_SUPPORT], 1, + [Define to 1 if building in support for reading Gnumeric files.]) +fi + AC_ARG_WITH( gui_tools, [AS_HELP_STRING([--with-gui-tools], [build the gui developer tools])]) @@ -54,8 +66,6 @@ if test x"$with_gui_tools" = x"yes" ; then fi AM_CONDITIONAL(WITH_GUI_TOOLS, test x"$with_gui_tools" = x"yes") -PSPP_OFF_T - AC_CHECK_LIB(gslcblas,main,,[PSPP_REQUIRED_PREREQ([libgslcblas])]) AC_CHECK_LIB(gsl, gsl_cdf_chisq_Q,,[PSPP_REQUIRED_PREREQ([libgsl (version 1.4 or later)])]) @@ -80,7 +90,7 @@ AC_CHECK_SIZEOF(long double) AC_C_BIGENDIAN -AC_CHECK_FUNCS([__setfpucw fork execl execlp isinf isnan finite getpid feholdexcept fpsetmask popen round trunc]) +AC_CHECK_FUNCS([__setfpucw fork execl execlp isinf isnan finite getpid feholdexcept fpsetmask popen round]) AC_PROG_LN_S