[Pkg-tcltk-commits] r445 - tclodbc/trunk/debian
frankie at alioth.debian.org
frankie at alioth.debian.org
Tue Jan 15 13:42:08 UTC 2008
Author: frankie
Date: 2008-01-15 13:42:07 +0000 (Tue, 15 Jan 2008)
New Revision: 445
Modified:
tclodbc/trunk/debian/changelog
tclodbc/trunk/debian/control
tclodbc/trunk/debian/rules
Log:
Fixes for FTBS on some archs
Modified: tclodbc/trunk/debian/changelog
===================================================================
--- tclodbc/trunk/debian/changelog 2008-01-11 17:42:02 UTC (rev 444)
+++ tclodbc/trunk/debian/changelog 2008-01-15 13:42:07 UTC (rev 445)
@@ -1,8 +1,10 @@
-tclodbc (2.5-4) UNRELEASED; urgency=low
+tclodbc (2.5-4) unstable; urgency=low
- * NOT RELEASED YET
+ * Removed flags which can confuse configure on some archs causing FTBS.
+ * Added Tcl related options at configure time.
+ * Pushed policy to 3.7.3 (no changes).
- -- Francesco Paolo Lovergine <frankie at debian.org> Wed, 14 Nov 2007 14:49:32 +0100
+ -- Francesco Paolo Lovergine <frankie at debian.org> Tue, 15 Jan 2008 14:41:04 +0100
tclodbc (2.5-3) unstable; urgency=low
Modified: tclodbc/trunk/debian/control
===================================================================
--- tclodbc/trunk/debian/control 2008-01-11 17:42:02 UTC (rev 444)
+++ tclodbc/trunk/debian/control 2008-01-15 13:42:07 UTC (rev 445)
@@ -4,7 +4,7 @@
Maintainer: Tcl/Tk Debian Packagers <pkg-tcltk-devel at lists.alioth.debian.org>
Uploaders: Daniel Rus Morales <danirus at tol-project.org>, Francesco Paolo Lovergine <frankie at debian.org>
Build-Depends: debhelper (>= 5), dpatch, automake, autoconf, autotools-dev, tcl-dev (>= 8.0), unixodbc-dev | libiodbc2-dev
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
Homepage: https://sourceforge.net/projects/tclodbc/
Package: tclodbc
Modified: tclodbc/trunk/debian/rules
===================================================================
--- tclodbc/trunk/debian/rules 2008-01-11 17:42:02 UTC (rev 444)
+++ tclodbc/trunk/debian/rules 2008-01-15 13:42:07 UTC (rev 445)
@@ -22,19 +22,17 @@
mv -f aclocal.m4 aclocal.m4.orig
aclocal -I . -I tclconfig
autoconf
- CC=g++ ./configure --host=$(DEB_HOST_GNU_TYPE) \
- --build=$(DEB_BUILD_GNU_TYPE) \
- --prefix=/usr \
- CFLAGS="$(CFLAGS)"
+# ./configure --host=$(DEB_HOST_GNU_TYPE) \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+
+ ./configure --prefix=/usr --with-tcl=/usr/lib --with-tclinclude=/usr/include/tcl
mv -f configure.orig configure
mv -f aclocal.m4.orig aclocal.m4
build: build-stamp
build-stamp: config.status
dh_testdir
- $(MAKE)
- touch $@
-
+ $(MAKE) CC=g++ CFLAGS="$(CFLAGS)"
clean: unpatch
dh_testdir
dh_testroot
More information about the Pkg-tcltk-commits
mailing list