r10864: support GNU/kFreeBSD
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 31 Dec 2005 18:15:16 +0000 (18:15 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 31 Dec 2005 18:15:16 +0000 (18:15 +0000)
db-mysql/make.sh
debian/changelog
debian/control
uffi/make.sh

index c5c60059df9fca4fd0322da7776b422442895b6e..b7754192f27572d3a3080f0ce6fe2dd62afda4c5 100644 (file)
@@ -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
index e42dcdd0ab97f6718bad1faa413437212c8472c4..908ae6bc05ebf3bb3d99e317cd1b2b6820fa14c4 100644 (file)
@@ -1,3 +1,9 @@
+cl-sql (3.5.2-2) unstable; urgency=low
+
+  * Commit patch for GNU/kFreeBSD (closes: 345219)
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 31 Dec 2005 11:14:04 -0700
+
 cl-sql (3.5.2-1) unstable; urgency=low
 
   * New upstream
index 727fa1fb0a36dff5fd911639c60c24d5c910f2b4..12fe54537c4a3913c0410ef07aa9ed1d71ba2b0a 100644 (file)
@@ -4,7 +4,7 @@ Priority: extra
 Maintainer: Kevin M. Rosenberg <kmr@debian.org>
 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
index 03e7478138b9ae12e37131e6894314cf6155fd4a..6b353743f37f4cb19cc26dad0b23dee855055ae8 100644 (file)
@@ -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