X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure.ac;h=dad55e2cb032ad1b0e7ef5f57504eadfb72f2672;hb=f828f7bf95a31e45cfee1ad6978d1ae3dff7f3c0;hp=6bc1a2f5418d74c649e42e7f21f15ff4e53bde5d;hpb=770f21f5544dd79d5c986a8317dc8475d961b7c2;p=pspp-builds.git diff --git a/configure.ac b/configure.ac index 6bc1a2f5..dad55e2c 100644 --- a/configure.ac +++ b/configure.ac @@ -40,6 +40,7 @@ fi dnl Checks for libraries. AC_SYS_LARGEFILE AC_SEARCH_LIBS([sin], [m]) +AC_SEARCH_LIBS([dcgettext], [intl]) PSPP_LIBPLOT PSPP_LC_PAPER AM_CONDITIONAL(WITHCHARTS, test x"$with_libplot" != x"no") @@ -58,6 +59,8 @@ 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)])]) + AC_PATH_PROG([XMLLINT], [xmllint], [echo], [$PATH]) + AC_SUBST(XMLLINT) fi AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no") @@ -206,6 +209,11 @@ if test "$am_cv_func_iconv" != "yes"; then PSPP_REQUIRED_PREREQ([iconv (see http://www.gnu.org/software/libiconv/)]) fi +dnl Required by the gnulib 'relocatable-prog' module. +dnl See doc/relocatable-maint.texi in the gnulib tree for details. +RELOCATABLE_LIBRARY_PATH='$(libdir)' +RELOCATABLE_STRIP=: + PSPP_CHECK_PREREQS AC_CONFIG_FILES([Makefile gl/Makefile])