r36034 - in /packages/jhdf/trunk/debian: changelog patches/z_missing_shared_flag.diff

sylvestre-guest at users.alioth.debian.org sylvestre-guest at users.alioth.debian.org
Fri Nov 27 17:33:51 UTC 2009


Author: sylvestre-guest
Date: Fri Nov 27 17:33:50 2009
New Revision: 36034

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=36034
Log:
  * Too small detection of the arch in the configure was causing some
    missing flag for the linker (Closes: #554090)

Added:
    packages/jhdf/trunk/debian/patches/z_missing_shared_flag.diff
Modified:
    packages/jhdf/trunk/debian/changelog

Modified: packages/jhdf/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/jhdf/trunk/debian/changelog?rev=36034&op=diff
==============================================================================
--- packages/jhdf/trunk/debian/changelog (original)
+++ packages/jhdf/trunk/debian/changelog Fri Nov 27 17:33:50 2009
@@ -1,6 +1,8 @@
 jhdf (2.5-8) unstable; urgency=low
 
   * Bad links to the VCS
+  * Too small detection of the arch in the configure was causing some
+    missing flag for the linker (Closes: #554090)
 
  -- Sylvestre Ledru <sylvestre at debian.org>  Tue, 24 Nov 2009 19:31:13 +0100
 

Added: packages/jhdf/trunk/debian/patches/z_missing_shared_flag.diff
URL: http://svn.debian.org/wsvn/debian-science/packages/jhdf/trunk/debian/patches/z_missing_shared_flag.diff?rev=36034&op=file
==============================================================================
--- packages/jhdf/trunk/debian/patches/z_missing_shared_flag.diff (added)
+++ packages/jhdf/trunk/debian/patches/z_missing_shared_flag.diff Fri Nov 27 17:33:50 2009
@@ -1,0 +1,44 @@
+--- jhdf-2.5.obsolete.0.285715800550864/configure.in	2009-11-03 00:33:51.000000000 +0100
++++ jhdf-2.5/configure.in	2009-11-27 18:27:08.000000000 +0100
+@@ -112,28 +112,28 @@
+ LLEXT="a";  
+ JSLEXT="so";
+ ;;
+-x86_64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so";
++x86_64-pc-linux*) LD=$CC; LDOPT="-g -shared"; SLEXT="so";
+ TARGETLIB="linux"
+ SLEXT="so";
+ LLEXT="a";  # the extension for the HDF and other libraries to link to
+ JSLEXT="so";
+ COPT="-shared -Dx86_64 -fPIC" ; 
+ ;;
+-ia64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so";
++ia64-pc-linux*) LD=$CC; LDOPT="-g -shared"; SLEXT="so";
+ TARGETLIB="linux"
+ SLEXT="so";
+ LLEXT="a";  # the extension for the HDF and other libraries to link to
+ JSLEXT="so";
+ COPT="-shared -Dia64 -fPIC" ; 
+ ;;
+-*-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so";
++*-pc-linux*) LD=$CC; LDOPT="-g -shared"; SLEXT="so";
+ TARGETLIB="linux"
+ SLEXT="so";
+ LLEXT="a";  # the extension for the HDF and other libraries to link to
+ JSLEXT="so";
+ COPT="-shared -DUNIX386" ; 
+ ;;
+-*-freebsd*) LD=$CC; LDOPT=-shared;
++*-freebsd*) LD=$CC; LDOPT="-g -shared";
+ TARGETLIB="freebsd"
+ SLEXT="so";
+ LLEXT="a";  # the extension for the HDF and other libraries to link to
+@@ -146,7 +146,7 @@
+ LLEXT="a";
+ SLEXT="dylib";
+ ;;
+-*) LD=$CC; LDOPT=-g; SLEXT="so";
++*) LD=$CC; LDOPT="-g -shared"; SLEXT="so";
+ LLEXT="a";
+ TARGETLIB="$target"
+ esac




More information about the debian-science-commits mailing list