mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 00:39:15 -04:00
upgrade to the PostgreSQL 7.3 series and provide an update to the 7.2 series, 7.2.4. :~] This port _will_ be removed and should EOL'ed in about 6 months time. Since there is no future for these bits, ignore their heritage commit an orphan for the 7 series. See the postgresql7 port for future and past bits. This port is only intended to serve as a means of postponing an inevitable upgrade to recent release. DBAs, please plan and begin upgrading to 7.3.X, the grass really is greener. Release notes: http://developer.postgresql.org/docs/postgres/release-7-2-4.html PR: ports/48025 Submitted by: Palle Girgensohn <girgen@pingpong.net>
59 lines
1.6 KiB
Text
59 lines
1.6 KiB
Text
--- configure.orig Wed Jun 26 21:28:24 2002
|
|
+++ configure Wed Jun 26 21:35:16 2002
|
|
@@ -2007,11 +2007,13 @@
|
|
EOF
|
|
|
|
|
|
- if test -d "$krb4_prefix/include"; then
|
|
- INCLUDES="$INCLUDES -I$krb4_prefix/include"
|
|
- fi
|
|
- if test -d "$krb4_prefix/lib"; then
|
|
- LIBDIRS="$LIBDIRS -L$krb4_prefix/lib"
|
|
+ if test "$krb4_prefix" != "/usr"; then
|
|
+ if test -d "$krb4_prefix/include"; then
|
|
+ INCLUDES="$INCLUDES -I$krb4_prefix/include"
|
|
+ fi
|
|
+ if test -d "$krb4_prefix/lib"; then
|
|
+ LIBDIRS="$LIBDIRS -L$krb4_prefix/lib"
|
|
+ fi
|
|
fi
|
|
|
|
krb_srvtab="/etc/srvtab"
|
|
@@ -2052,11 +2054,13 @@
|
|
EOF
|
|
|
|
|
|
- if test -d "$krb5_prefix/include"; then
|
|
- INCLUDES="$INCLUDES -I$krb5_prefix/include"
|
|
- fi
|
|
- if test -d "$krb5_prefix/lib"; then
|
|
- LIBDIRS="$LIBDIRS -L$krb5_prefix/lib"
|
|
+ if test "$krb5_prefix" != "/usr"; then
|
|
+ if test -d "$krb5_prefix/include"; then
|
|
+ INCLUDES="$INCLUDES -I$krb5_prefix/include"
|
|
+ fi
|
|
+ if test -d "$krb5_prefix/lib"; then
|
|
+ LIBDIRS="$LIBDIRS -L$krb5_prefix/lib"
|
|
+ fi
|
|
fi
|
|
|
|
krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
|
|
@@ -2157,11 +2161,13 @@
|
|
EOF
|
|
|
|
|
|
- if test -d "${openssl_prefix}/include" ; then
|
|
- INCLUDES="$INCLUDES -I${openssl_prefix}/include"
|
|
- fi
|
|
- if test -d "${openssl_prefix}/lib" ; then
|
|
- LIBDIRS="$LIBDIRS -L${openssl_prefix}/lib"
|
|
+ if test "${openssl_prefix}" != "/usr"; then
|
|
+ if test -d "${openssl_prefix}/include" ; then
|
|
+ INCLUDES="$INCLUDES -I${openssl_prefix}/include"
|
|
+ fi
|
|
+ if test -d "${openssl_prefix}/lib" ; then
|
|
+ LIBDIRS="$LIBDIRS -L${openssl_prefix}/lib"
|
|
+ fi
|
|
fi
|
|
|
|
fi
|