Skip to content
Snippets Groups Projects
Commit e3e7fda4 authored by Marek Habersack's avatar Marek Habersack
Browse files

postgres 7.3+ detection and explicit --with-perl for debian build process.

Rev: packaging/debian/rules:1.36
Rev: src/modules/Postgres/configure.in:1.18
parent fdb650b0
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# architecture-dependant package, as well as an architecture-independent # architecture-dependant package, as well as an architecture-independent
# package. # package.
# #
# $Id: rules,v 1.35 2002/12/06 04:21:21 grendel Exp $ # $Id: rules,v 1.36 2002/12/21 19:42:17 grendel Exp $
# #
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
...@@ -58,6 +58,7 @@ CFARGS=--without-rtldebug \ ...@@ -58,6 +58,7 @@ CFARGS=--without-rtldebug \
--with-postgres \ --with-postgres \
--with-postgres-include-dir=/usr/include/postgresql \ --with-postgres-include-dir=/usr/include/postgresql \
--with-libpq-dir=/usr/lib \ --with-libpq-dir=/usr/lib \
--with-perl \
--without-ffmpeg \ --without-ffmpeg \
--without-libpdf \ --without-libpdf \
--without-libpanda $(MACHINE_OPTS) --without-libpanda $(MACHINE_OPTS)
......
dnl $Id: configure.in,v 1.17 2002/08/02 21:23:38 grendel Exp $ dnl $Id: configure.in,v 1.18 2002/12/21 19:42:17 grendel Exp $
AC_INIT(postgres.c) AC_INIT(postgres.c)
AC_CONFIG_HEADER(pgres_config.h) AC_CONFIG_HEADER(pgres_config.h)
...@@ -93,7 +93,7 @@ dnl check whether we have Postgres 7.2 or newer ...@@ -93,7 +93,7 @@ dnl check whether we have Postgres 7.2 or newer
HAVE_PG72=no HAVE_PG72=no
if test -f $pike_cv_pgres_include_dir/pg_config.h; then if test -f $pike_cv_pgres_include_dir/pg_config.h; then
case `grep 'PG_VERSION \"' $pike_cv_pgres_include_dir/pg_config.h | cut -d '"' -f 2` in case `grep 'PG_VERSION \"' $pike_cv_pgres_include_dir/pg_config.h | cut -d '"' -f 2` in
7.2*) HAVE_PG72=yes 7.[[2-9]]*|8.*) HAVE_PG72=yes
AC_DEFINE(HAVE_PG72) ;; AC_DEFINE(HAVE_PG72) ;;
esac esac
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment