isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 50aa8dfc96d2213161b8002c8be30628951ef163
parent 75b6b9c7159b0fe07b7703a96c8159aa03293971
Author: Theodore Ts'o <tytso@users.sf.net>
Date:   Sun, 11 Jan 2004 08:08:37 +0000

Update changes from debian isync package 0.9.1-4:

  * Use configure's --build and --host options to prevent wrong
    optimizations (such as building for sparc64 rather than for sparc).

Diffstat:
Mdebian/changelog | 11+++++++++++
Mdebian/rules | 5++++-
2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog @@ -6,6 +6,17 @@ isync (0.9.2-1) unstable; urgency=low -- Theodore Y. Ts'o <tytso@mit.edu> Sun, 11 Jan 2004 02:38:48 -0500 +isync (0.9.1-4) unstable; urgency=low + + * The "Why do I keep adding such stupid bugs?" release. + * Remove the extra parenthesis that caused UID FETCH syntax errors, + thanks to Niels den Otter for pointing the bug and giving the + solution. (Closes: #224803) + * Use configure's --build and --host options to prevent wrong + optimizations (such as building for sparc64 rather than for sparc). + + -- Nicolas Boullis <nboullis@debian.org> Wed, 7 Jan 2004 01:06:53 +0100 + isync (0.9.1-3) unstable; urgency=low * Do not segfault when using both tunneled end non-tunneled connections, diff --git a/debian/rules b/debian/rules @@ -9,10 +9,13 @@ else CFLAGS += -O2 endif +DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + build: build-stamp build-stamp: patch-stamp dh_testdir - ./configure --prefix=/usr --mandir=/usr/share/man + ./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) --prefix=/usr --mandir=/usr/share/man $(MAKE) CFLAGS="$(CFLAGS)" touch build-stamp