[Pkg-ocaml-maint-commits] r3285 - in
/trunk/packages/numerix/trunk/debian: changelog rules
jcristau-guest at users.alioth.debian.org
jcristau-guest at users.alioth.debian.org
Fri Oct 27 05:00:21 CEST 2006
Author: jcristau-guest
Date: Fri Oct 27 03:00:20 2006
New Revision: 3285
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=3285
Log:
* The new alpha and powerpc assembly code in 0.22 doesn't seem to work on
linux yet, so force use of the generic C code for now (Closes: #384243).
Modified:
trunk/packages/numerix/trunk/debian/changelog
trunk/packages/numerix/trunk/debian/rules
Modified: trunk/packages/numerix/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/numerix/trunk/debian/changelog?rev=3285&op=diff
==============================================================================
--- trunk/packages/numerix/trunk/debian/changelog (original)
+++ trunk/packages/numerix/trunk/debian/changelog Fri Oct 27 03:00:20 2006
@@ -1,17 +1,12 @@
-numerix (0.22a-1) experimental; urgency=low
+numerix (0.22-3) unstable; urgency=low
- * New upstream unofficial release
- + fixes asm syntax on alpha (Closes: #384243).
+ * The new alpha and powerpc assembly code in 0.22 doesn't seem to work on
+ linux yet, so force use of the generic C code for now (Closes: #384243).
* Remove Jérôme Marant and Michael K. Edwards from the Uploaders field,
since they don't seem to be active in pkg-ocaml-maint any more.
-
- -- Julien Cristau <julien.cristau at ens-lyon.org> Sun, 10 Sep 2006 02:37:23 +0200
-
-numerix (0.22-2) unstable; urgency=low
-
* Don't tell configure we're cross-compiling if that's not the case.
- -- Julien Cristau <julien.cristau at ens-lyon.org> Sun, 9 Jul 2006 18:47:37 +0200
+ -- Julien Cristau <julien.cristau at ens-lyon.org> Fri, 27 Oct 2006 04:55:43 +0200
numerix (0.22-1) unstable; urgency=low
Modified: trunk/packages/numerix/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/numerix/trunk/debian/rules?rev=3285&op=diff
==============================================================================
--- trunk/packages/numerix/trunk/debian/rules (original)
+++ trunk/packages/numerix/trunk/debian/rules Fri Oct 27 03:00:20 2006
@@ -16,6 +16,7 @@
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
confflags += --build $(DEB_HOST_GNU_TYPE)
@@ -23,6 +24,14 @@
confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
endif
+# assembly code for alpha and ppc doesn't work on linux yet, so force use of
+# the generic C code
+ifeq ($(DEB_HOST_ARCH),alpha)
+ confflags += --enable-processor=generic
+endif
+ifeq ($(DEB_HOST_ARCH),powerpc)
+ confflags += --enable-processor=generic
+endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
More information about the Pkg-ocaml-maint-commits
mailing list