From 27887d97fcf2dd02c1629c5189233a8cfc569851 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 31 Dec 2005 18:15:16 +0000 Subject: [PATCH] r10864: support GNU/kFreeBSD --- db-mysql/make.sh | 3 ++- debian/changelog | 6 ++++++ debian/control | 2 +- uffi/make.sh | 3 ++- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/db-mysql/make.sh b/db-mysql/make.sh index c5c6005..b775419 100644 --- a/db-mysql/make.sh +++ b/db-mysql/make.sh @@ -3,6 +3,7 @@ case "`uname`" in Linux) os_linux=1 ;; FreeBSD) os_freebsd=1 ;; + GNU/kFreeBSD) os_gnukfreebsd=1;; Darwin) os_darwin=1 ;; SunOS) os_sunos=1 ;; AIX) os_aix=1 ;; @@ -10,7 +11,7 @@ case "`uname`" in exit 1 ;; esac -if [ "$os_linux" -o "$os_freebsd" ]; then +if [ "$os_linux" -o "$os_freebsd" -o "$os_gnukfreebsd" ]; then gcc $CFLAGS -fPIC -c $SOURCE -o $OBJECT ld -shared -soname=$BASE $OBJECT $LDFLAGS -o $SHARED_LIB elif [ "$os_darwin" ]; then diff --git a/debian/changelog b/debian/changelog index e42dcdd..908ae6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (3.5.2-2) unstable; urgency=low + + * Commit patch for GNU/kFreeBSD (closes: 345219) + + -- Kevin M. Rosenberg Sat, 31 Dec 2005 11:14:04 -0700 + cl-sql (3.5.2-1) unstable; urgency=low * New upstream diff --git a/debian/control b/debian/control index 727fa1f..12fe545 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: extra Maintainer: Kevin M. Rosenberg Build-Depends: debhelper (>= 4.0.0), libmysqlclient15-dev, libpq-dev Build-Depends-Indep: debhelper (>= 4.0.0) -Standards-Version: 3.6.2.1 +Standards-Version: 3.6.2.2 Package: cl-sql Architecture: all diff --git a/uffi/make.sh b/uffi/make.sh index 03e7478..6b35374 100644 --- a/uffi/make.sh +++ b/uffi/make.sh @@ -3,6 +3,7 @@ case "`uname`" in Linux) os_linux=1 ;; FreeBSD) os_freebsd=1 ;; + GNU/kFreeBSD) os_gnukfreebsd=1;; Darwin) os_darwin=1 ;; SunOS) os_sunos=1 ;; AIX) os_aix=1 ;; @@ -10,7 +11,7 @@ case "`uname`" in exit 1 ;; esac -if [ "$os_linux" -o "$os_freebsd" ]; then +if [ "$os_linux" -o "$os_freebsd" -o "$os_gnukfreebsd" ]; then gcc -fPIC -DPIC -c $SOURCE -o $OBJECT ld -shared -soname=$BASE $LDFLAGS $OBJECT -o $SHARED_LIB elif [ "$os_darwin" ]; then -- 2.34.1