X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure.ac;h=9c52b30a676ef3c77393bb174dc61b74538e6ab5;hb=89a1e7f479414c1a2345e33210d69e91e61b33ac;hp=5b8e1a933c99c0dec9e00149df042cd0e9a36ea8;hpb=2ad5fe55e454b8ccb271a710e2c4b1b53c57fc8c;p=pspp-builds.git diff --git a/configure.ac b/configure.ac index 5b8e1a93..9c52b30a 100644 --- a/configure.ac +++ b/configure.ac @@ -47,6 +47,24 @@ fi AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no") +dnl Checks needed for psql reader +AC_CHECK_PROG(psql_support, pg_config, yes, no) +if test x"$psql_support" = x"yes" ; then + AC_DEFINE([PSQL_SUPPORT], 1, + [Define to 1 if building in support for reading from postgres databases.]) + PG_CFLAGS=-I`pg_config --includedir` + AC_SUBST(PG_CFLAGS) + PG_LDFLAGS=-L`pg_config --libdir` + AC_SUBST(PG_LDFLAGS) + PG_LIBS=-lpq + AC_SUBST(PG_LIBS) + PKG_CHECK_MODULES(OPENSSL,libssl, + AC_DEFINE([USE_SSL],1, + [Define to 1 if the openssl library is present.]) + ,) +fi +AM_CONDITIONAL(PSQL_SUPPORT, test x"$psql_support" = x"yes") + dnl Checks needed for gnumeric reader gnm_support=yes; PKG_CHECK_MODULES(LIBXML2, libxml-2.0,,