[pkg-dspam-commits] r76 - in trunk/debian: . patches
Matthijs Mohlmann
active2-guest at costa.debian.org
Sat Mar 11 13:24:29 UTC 2006
Author: active2-guest
Date: Sat Mar 11 13:24:28 2006
New Revision: 76
Added:
trunk/debian/patches/configure-ac.dpatch (contents, props changed)
Modified:
trunk/debian/changelog
trunk/debian/patches/00list
Log:
* Fix linking against sqlite3.
Modified: trunk/debian/changelog
==============================================================================
--- trunk/debian/changelog (original)
+++ trunk/debian/changelog Sat Mar 11 13:24:28 2006
@@ -1,8 +1,10 @@
dspam (3.6.4-2) experimental; urgency=low
* Updated dependency of libmysqlclient to 15-dev (Closes: #354218).
+ * Copy paste fault in configure.ac which causes sqlite3 backend not linked
+ with -lsqlite3 (Closes: #355095)
- -- Debian DSPAM Maintainers <pkg-dspam-misc at lists.alioth.debian.org> Fri, 24 Feb 2006 15:00:00 +0000
+ -- Debian DSPAM Maintainers <pkg-dspam-misc at lists.alioth.debian.org> Sat, 11 Mar 2006 14:22:47 +0100
dspam (3.6.4-1) experimental; urgency=low
Modified: trunk/debian/patches/00list
==============================================================================
--- trunk/debian/patches/00list (original)
+++ trunk/debian/patches/00list Sat Mar 11 13:24:28 2006
@@ -11,3 +11,4 @@
autogen-sh.dpatch
default-server-pidfile.dpatch
background-dspam.dpatch
+configure-ac.dpatch
Added: trunk/debian/patches/configure-ac.dpatch
==============================================================================
--- (empty file)
+++ trunk/debian/patches/configure-ac.dpatch Sat Mar 11 13:24:28 2006
@@ -0,0 +1,23 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## configure-ac.dpatch by Matthijs Mohlmann <matthijs at cacholong.nl>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+ at DPATCH@
+diff -urNad dspam-3.6.4~/configure.ac dspam-3.6.4/configure.ac
+--- dspam-3.6.4~/configure.ac 2006-02-13 17:14:14.000000000 +0100
++++ dspam-3.6.4/configure.ac 2006-03-11 14:17:14.052518584 +0100
+@@ -820,9 +820,9 @@
+ libsqlite3_drv_cppflags="$SQLITE3_CPPFLAGS $CPPFLAGS"
+ libsqlite3_drv_libs="$SQLITE3_LIBS $LIBS"
+ libsqlite3_drv_ldflags="$SQLITE3_LDFLAGS $LDFLAGS"
+- AC_SUBST(libsqlite_drv_cppflags)
+- AC_SUBST(libsqlite_drv_libs)
+- AC_SUBST(libsqlite_drv_ldflags)
++ AC_SUBST(libsqlite3_drv_cppflags)
++ AC_SUBST(libsqlite3_drv_libs)
++ AC_SUBST(libsqlite3_drv_ldflags)
+ sqlite3_drv=yes
+ storage_drv_subdirs="$storage_drv_subdirs tools.sqlite_drv"
+ fi
More information about the Pkg-dspam-commits
mailing list