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).
This commit is contained in:
parent
75b6b9c715
commit
50aa8dfc96
11
debian/changelog
vendored
11
debian/changelog
vendored
|
@ -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
|
-- 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
|
isync (0.9.1-3) unstable; urgency=low
|
||||||
|
|
||||||
* Do not segfault when using both tunneled end non-tunneled connections,
|
* Do not segfault when using both tunneled end non-tunneled connections,
|
||||||
|
|
5
debian/rules
vendored
5
debian/rules
vendored
|
@ -9,10 +9,13 @@ else
|
||||||
CFLAGS += -O2
|
CFLAGS += -O2
|
||||||
endif
|
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: build-stamp
|
||||||
build-stamp: patch-stamp
|
build-stamp: patch-stamp
|
||||||
dh_testdir
|
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)"
|
$(MAKE) CFLAGS="$(CFLAGS)"
|
||||||
touch build-stamp
|
touch build-stamp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user