Package: dbmail Version: 1.2.11-1 Severity: serious Tags: patch The 'dbmail' package FTBFS because the postgresql header are now in /usr/include/postgresql/8.0 instead of /usr/include/postgresql.
The attached patch 'dbmail' fixes this (and an additional gcc-4.0 compilation error). Regards Andreas Jochens diff -urN ../tmp-orig/dbmail-1.2.11/debian/rules ./debian/rules --- ../tmp-orig/dbmail-1.2.11/debian/rules 2005-06-22 14:43:55.000000000 +0200 +++ ./debian/rules 2005-06-22 14:43:50.000000000 +0200 @@ -55,7 +55,7 @@ dbmail-pgsql: dbmail-pgsql-stamp dbmail-pgsql-stamp: $(MAKE) clean || true - env CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure $(CONFFLAGS) --with-pgsql=/usr/include/postgresql + env CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure $(CONFFLAGS) --with-pgsql=/usr/include/postgresql/8.0 $(MAKE) mkdir -p $(BUILDBASE)/dbmail-pgsql mv $(BINARIES) $(BUILDBASE)/dbmail-pgsql/ diff -urN ../tmp-orig/dbmail-1.2.11/bounce.c ./bounce.c --- ../tmp-orig/dbmail-1.2.11/bounce.c 2004-02-04 12:14:43.000000000 +0100 +++ ./bounce.c 2005-06-22 14:23:14.000000000 +0200 @@ -92,7 +92,7 @@ trace (TRACE_INFO,"bounce(): opening pipe to command " "%s",sendmail_command); - (FILE *)sendmail_stream=popen (sendmail_command,"w"); + sendmail_stream=popen (sendmail_command,"w"); if (sendmail_stream==NULL) { @@ -167,7 +167,7 @@ trace (TRACE_INFO,"bounce(): opening pipe to command " "%s",sendmail_command); - (FILE *)sendmail_stream=popen (sendmail_command,"w"); + sendmail_stream=popen (sendmail_command,"w"); if (sendmail_stream==NULL) { -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]