[Pkg-tcltk-commits] r680 - tcl8.6/trunk/debian

sgolovan-guest at alioth.debian.org sgolovan-guest at alioth.debian.org
Wed Jul 2 17:11:48 UTC 2008


Author: sgolovan-guest
Date: 2008-07-02 17:11:47 +0000 (Wed, 02 Jul 2008)
New Revision: 680

Modified:
   tcl8.6/trunk/debian/rules
Log:
[tcl8.6]
Disabled DLL unloading for kfreebsd-*.


Modified: tcl8.6/trunk/debian/rules
===================================================================
--- tcl8.6/trunk/debian/rules	2008-07-02 17:10:27 UTC (rev 679)
+++ tcl8.6/trunk/debian/rules	2008-07-02 17:11:47 UTC (rev 680)
@@ -23,6 +23,12 @@
 CFLAGS=-g -O2 -fno-unit-at-a-time
 endif
 endif
+# Enable DLL unloading only for non-kfreebsd arches (see bug #488684)
+ifeq (, $(findstring kfreebsd, $(DEB_HOST_ARCH)))
+DLL_UNLOADING=--enable-dll-unloading
+else
+DLL_UNLOADING=--disable-dll-unloading
+endif
 
 unpatch:
 	dh_testdir
@@ -49,6 +55,7 @@
 		      --includedir=/usr/include/tcl$(v) \
 		      --enable-shared \
 		      --enable-threads \
+		      $(DLL_UNLOADING) \
 		      --disable-rpath \
 		      --mandir=/usr/share/man \
 		      --enable-man-symlinks \




More information about the Pkg-tcltk-commits mailing list