summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2024-02-26 21:38:37 -0500
committerAaron M. Ucko <ucko@debian.org>2024-02-26 21:38:37 -0500
commitc34ff0c8cd61d4fad3ba24c22d4a3846712a59e1 (patch)
tree70feff59ff6b4ee6107e51ad6f2917bb9b835194
parent783945a086261acfaf70bf548b1a8003f18f344c (diff)
ncbi-tools6 6.1.20170106+dfsg2-1~exp2: No time64 for i386.debian/6.1.20170106+dfsg2-1_exp2archive/debian/6.1.20170106+dfsg2-1_exp2
debian/rules: Explicitly opt back out of the time64 ABI on i386.
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules5
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index bdd2b553..340e0254 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ncbi-tools6 (6.1.20170106+dfsg2-1~exp2) experimental; urgency=medium
+
+ * debian/rules: Explicitly opt back out of the time64 ABI on i386.
+
+ -- Aaron M. Ucko <ucko@debian.org> Mon, 26 Feb 2024 21:38:36 -0500
+
ncbi-tools6 (6.1.20170106+dfsg2-1~exp1) experimental; urgency=medium
* New tarball, with the webdesign subtree dropped; at least some of its
diff --git a/debian/rules b/debian/rules
index 5202b8c5..c3564caa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,10 @@ MT_OTHERLIBS = -lpthread
THREAD_OBJ = ncbithr.o
NETENTREZVERSION = 2.02c2ASN1SPEC6
-export DEB_BUILD_MAINT_OPTIONS=hardening=+all abi=+time64
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+ifneq ($(DEB_HOST_ARCH),i386)
+ DEB_BUILD_MAINT_OPTIONS += abi=+time64
+endif
CFLAGS := $(shell dpkg-buildflags --get CFLAGS) -Wall \
$(shell dpkg-buildflags --get CPPFLAGS)