On Friday 20 June 2003 11:34, Dave Page wrote:
> I need to keep traffic on snake to a minimum, so if advertising snashots
> or anything, please point users to http://www.pgadmin.org/snapshots.
> This is rsync'd from snake daily.
Dear Dave,
This morning, I added an "Installing binary snapshots" page (snapshot.html)
to the documentation and will update the links. This page needs more information
about installing Debian, Win32, Slackware.
When the page is finished, would it be possible to copy
it to http://www.pgadmin.org/snapshots/index.html?
Also, I am having problems with autoconf and automake:
- Mandrake 91
Old autoconf and automake versions are provided. Nothing new on Cooker.
It is impossible to update from RedHat versions. Could you connect on the Mandrake host
(I need your private key) and try to compile pgAdmi3. Mandrake is as important as SuSE
in Germany and we need a more compliant autoconf script.
- SuSE 8.2
The requested PostgreSQL header files cannot be found under SuSE without a patch
written by Reinhard.
This patch still needs to be reviewed. Please find it included in this email.
Cheers,
Jean-Michel
? Makefile
? Makefile.in
? aclocal.m4
? autom4te.cache
? config.h
? config.h.in
? config.log
? config.status
? configure
? pgadmin3-0.1.1.tar.gz
? stamp-h1
? config/config.guess
? config/config.sub
? config/depcomp
? config/install-sh
? config/missing
? config/mkinstalldirs
? src/.deps
? src/Makefile
? src/Makefile.in
Index: Makefile.am
===================================================================
RCS file: /disk1/cvsroot/pgadmin3/Makefile.am,v
retrieving revision 1.9
diff -u -r1.9 Makefile.am
--- Makefile.am 13 Jun 2003 11:37:07 -0000 1.9
+++ Makefile.am 19 Jun 2003 11:25:25 -0000
@@ -4,7 +4,7 @@
#
# Makefile - Makefile for *nix systems
SUBDIRS = src
-EXTRA_DIST = README.txt BUGS.txt LICENCE.txt
+EXTRA_DIST = README.txt BUGS.txt LICENCE.txt pgadmin3.spec
nobase_dist_pkgdata_DATA = \
docs/en_US/pg/*.gif docs/en_US/pg/*.html docs/en_US/pg/*.css \
Index: acinclude.m4
===================================================================
RCS file: /disk1/cvsroot/pgadmin3/acinclude.m4,v
retrieving revision 1.8
diff -u -r1.8 acinclude.m4
--- acinclude.m4 4 Jun 2003 08:19:25 -0000 1.8
+++ acinclude.m4 19 Jun 2003 11:25:25 -0000
@@ -38,27 +38,27 @@
[wx_version=2.4])
])
-########################################
-# Check for PostgreSQL library (libpq) #
-########################################
+######################################
+# Check for PostgreSQL include files #
+######################################
AC_DEFUN([CHECK_LIBPQ],
[AC_MSG_CHECKING(for pgsql)
-AC_ARG_WITH(pgsql,
-[ --with-pgsql=DIR directory to search for pgsql libraries and headers],
+AC_ARG_WITH(pgsql-include,
+[ --with-pgsql-include=DIR directory to search for pgsql headers],
[if test "$withval" != no; then
AC_MSG_RESULT(yes)
- LIBPQ_HOME="$withval"
+ LIBPQ_INCLUDE="$withval"
else
AC_MSG_RESULT(no)
fi], [
AC_MSG_RESULT(yes)
- LIBPQ_HOME=/usr/local/pgsql
- if test ! -f "${LIBPQ_HOME}/include/libpq-fe.h"
+ LIBPQ_INCLUDE=/usr/local/pgsql/include
+ if test ! -f "${LIBPQ_INCLUDE}/libpq-fe.h"
then
- LIBPQ_HOME=/usr/local
- if test ! -f "${LIBPQ_HOME}/include/libpq-fe.h"
+ LIBPQ_INCLUDE=/usr/local/include
+ if test ! -f "${LIBPQ_INCLUDE}/libpq-fe.h"
then
- LIBPQ_HOME=/usr
+ LIBPQ_INCLUDE=/usr/include/pgsql
fi
fi
])
@@ -66,12 +66,11 @@
#
# Locate pgsql
#
-if test -n "${LIBPQ_HOME}"
+if test -n "${LIBPQ_INCLUDE}"
then
LIBPQ_OLD_LDFLAGS=$LDFLAGS
LIBPQ_OLD_CPPFLAGS=$CPPFLAGS
- LDFLAGS="$LDFLAGS -L${LIBPQ_HOME}/lib"
- CPPFLAGS="$CPPFLAGS -I${LIBPQ_HOME}/include"
+ CPPFLAGS="$CPPFLAGS -I${LIBPQ_INCLUDE}"
LIBS="$LIBS -lssl -lcrypto"
AC_LANG_SAVE
AC_LANG_C
@@ -80,15 +79,15 @@
AC_LANG_RESTORE
if test "$pgsql_cv_libpq" = "yes" -a "$pgsql_cv_libpqfe_h" = "yes"
then
- AC_MSG_CHECKING(pgsql in ${LIBPQ_HOME})
+ AC_MSG_CHECKING(pgsql)
AC_MSG_RESULT(ok)
LIBS="$LIBS -lpq"
else
- AC_MSG_CHECKING(pgsql in ${LIBPQ_HOME})
+ AC_MSG_CHECKING(pgsql)
LDFLAGS="$LIBPQ_OLD_LDFLAGS"
CPPFLAGS="$LIBPQ_OLD_CPPFLAGS"
AC_MSG_RESULT(failed)
- AC_MSG_ERROR(you must specify a valid pgsql installation with --with-pgsql=DIR)
+ AC_MSG_ERROR(you must specify the directory of your pgsql headers with --with-pgsql-headers=DIR)
fi
fi
])
---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend