Package: python-popy
Version: 2.0.8-7.1
Severity: serious
Tags: patch
When building 'python-popy' on unstable, I get the following error:
make[1]: Entering directory `/python-popy-2.0.8'
gcc -fPIC -Wstrict-prototypes -Wall -O6 -fomit-frame-pointer \
-I/usr/include/python2.1/config \
-I/usr/include/python2.1 \
-DHAVE_CONFIG=1 -I/usr/include/postgresql
-I/usr/include/postgresql/server -Wall \
-DVERSION=\"2.0.8\" -I. -c PoPymodule.c -o PoPymodule2.1.o
In file included from PoPymodule.c:39:
PoPymodule.h:41:29: error: server/postgres.h: No such file or directory
PoPymodule.h:42:36: error: server/catalog/pg_type.h: No such file or directory
With the attached patch 'python-popy' can be compiled on unstable.
Regards
Andreas Jochens
diff -urN ../tmp-orig/python-popy-2.0.8/PoPymodule.h ./PoPymodule.h
--- ../tmp-orig/python-popy-2.0.8/PoPymodule.h 2005-09-09 07:37:56.000000000
+0000
+++ ./PoPymodule.h 2005-09-09 07:36:28.000000000 +0000
@@ -38,8 +38,8 @@
#include <Python.h>
#include <structmember.h>
-#include <server/postgres.h>
-#include <server/catalog/pg_type.h>
+#include <postgres.h>
+#include <catalog/pg_type.h>
#include <libpq-fe.h>
#include <libpq/libpq-fs.h>
#include <regex.h>
diff -urN ../tmp-orig/python-popy-2.0.8/debian/control ./debian/control
--- ../tmp-orig/python-popy-2.0.8/debian/control 2005-09-09
07:37:56.000000000 +0000
+++ ./debian/control 2005-09-09 07:31:48.000000000 +0000
@@ -2,7 +2,7 @@
Section: libs
Priority: optional
Maintainer: James W. Penny <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 3.0.0), postgresql-dev, python-dev,
python2.1-dev, python2.2-dev, python2.3-dev
+Build-Depends: debhelper, postgresql-dev, libssl-dev, python-dev,
python2.1-dev, python2.2-dev, python2.3-dev
Standards-Version: 3.6.0
Package: python-popy
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]