|
From: David S. <ds...@sc...> - 2002-09-04 03:08:41
|
I recently uploaded plplot-5.1.0 to Debian/unstable, since Rafael
was on vacation. And more recently, I merged all the past
uploads into the debian directory on the DEBIAN branch in CVS.
There's a bit of patching left in the Debian packaging, attached
below. The first looks like a hack, the second is a python-2.1
fix. (I don't remember if I wrote them or not. =) )
dave...
Index: cf/configure.in
===================================================================
RCS file: /cvsroot/plplot/plplot/cf/configure.in,v
retrieving revision 1.142
diff -u -r1.142 configure.in
--- cf/configure.in 28 Jul 2002 22:41:15 -0000 1.142
+++ cf/configure.in 4 Sep 2002 02:25:53 -0000
@@ -570,7 +570,8 @@
# around this potential problem by just defining caddr_t to 'char *' on all
# systems (unless it is set already), whether it will be needed or not.
-AC_CHECK_TYPE(caddr_t, char *)
+# This check is busted. Since linux has caddr_t, just turn off the check.
+#AC_CHECK_TYPE(caddr_t, char *)
# ----------------------------------------------------------------------------
# If you don't know what this is for you shouldn't be using it.
Index: cf/sysloc.in
===================================================================
RCS file: /cvsroot/plplot/plplot/cf/sysloc.in,v
retrieving revision 1.108
diff -u -r1.108 sysloc.in
--- cf/sysloc.in 20 Aug 2002 10:57:06 -0000 1.108
+++ cf/sysloc.in 4 Sep 2002 02:25:54 -0000
@@ -962,6 +962,10 @@
if test "$with_dbmalloc" = "yes"; then
if test -z "$DBMALLOCINCDIR"; then
incdirs="\
+ $prefix/include/python2.1 \
+ /usr/include/python2.1 \
+ $prefix/include/python2.1/Numeric \
+ /usr/include/python2.1/Numeric \
$prefix/include \
$HOME/local/include \
$HOME/local/dbmalloc/include \
|