~ubuntu-branches/ubuntu/oneiric/boinc-app-seti/oneiric

« back to all changes in this revision

Viewing changes to debian/patches/002_disable_static_linkage.patch

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Steffen Moeller, Frank S. Thomas
  • Date: 2008-01-23 21:27:23 UTC
  • mfrom: (2.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080123212723-3c05zp04f8m1vk5s
Tags: 5.13+cvs20060510-4
[ Steffen Moeller ]
* debian/rules: Wrote get-orig-source target that downloads the latest
  nightly tarball.

[ Frank S. Thomas ]
* debian/control.in:
  - Bumped Standards-Version from 3.7.2 to 3.7.3, no changes required.
  - Changed my maintainer address to fst@debian.org.
* debian/rules: Remove --disable-dependency-tracking from configure's
  arguments, because it breaks some handwritten rules in client/Makefile.am
  which require that $(DEPDIR) exists.
* Bumped debhelper compat level from V5 to V6 since this is the current
  recommended level and raised the build dependency to "debhelper (>= 6)".
* debian/patches/: Added 201_missing_header_for_gcc4.3.patch in order to
  fix a FTBFS with recent GCC 4.3 snapshots. Thanks to Martin Michlmayr
  <tbm@cyrius.com> for the bug report. (closes: #462051)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: boinc-app-seti-5.13+cvs20060510/configure.ac
 
2
===================================================================
 
3
--- boinc-app-seti-5.13+cvs20060510.orig/configure.ac   2007-03-29 11:05:09.000000000 +0200
 
4
+++ boinc-app-seti-5.13+cvs20060510/configure.ac        2007-03-29 11:06:02.000000000 +0200
 
5
@@ -156,15 +156,18 @@
 
6
 AC_SYS_LARGEFILE
 
7
 ACX_PTHREAD([AC_DEFINE(HAVE_PTHREAD,1, [Have pthread])])
 
8
 
 
9
-STATIC_LIB_LIST="stdc++ gcc gcc_eh gtk* gdk* gmodule gthread glib wx* tiff jpeg
 
10
-png Xi glut socket z fftw3f"
 
11
+#STATIC_LIB_LIST="stdc++ gcc gcc_eh gtk* gdk* gmodule gthread glib wx* tiff jpeg
 
12
+#png Xi glut socket z fftw3f"
 
13
+#
 
14
+#case ${target} in
 
15
+#        *-linux*)       STATIC_LIB_LIST="${STATIC_LIB_LIST} nsl ssl crypto"
 
16
+#        ;;
 
17
+#        *-solaris*)     STATIC_LIB_LIST="${STATIC_LIB_LIST} X* ssl crypto"
 
18
+#        ;;
 
19
+#esac
 
20
 
 
21
-case ${target} in
 
22
-        *-linux*)       STATIC_LIB_LIST="${STATIC_LIB_LIST} nsl ssl crypto"
 
23
-        ;;
 
24
-        *-solaris*)     STATIC_LIB_LIST="${STATIC_LIB_LIST} X* ssl crypto"
 
25
-        ;;
 
26
-esac
 
27
+# This needs at least one word, so I'm using nolib, which isn't a lib. :-)
 
28
+STATIC_LIB_LIST="nolib"
 
29
 
 
30
 # Checks for libraries.
 
31
 CHECK_SSL