diff options
author | 2006-09-16 13:39:10 +0000 | |
---|---|---|
committer | 2006-09-16 13:39:10 +0000 | |
commit | debdcfbe0a04be09d63513625445d34b5a939177 (patch) | |
tree | 89fff623888875cc3d5618fbef705fdae1d3499a /net-analyzer/nload/files | |
parent | ppc stable (diff) | |
download | historical-debdcfbe0a04be09d63513625445d34b5a939177.tar.gz historical-debdcfbe0a04be09d63513625445d34b5a939177.tar.bz2 historical-debdcfbe0a04be09d63513625445d34b5a939177.zip |
Revision bump to prevent net-analyzer/nload from installing a prestripped binary (removing -s from LDFLAGS in configure.in). This fixes #143857 (commiting on behalf of Daniel Black).
Package-Manager: portage-2.1.2_pre1
Diffstat (limited to 'net-analyzer/nload/files')
-rw-r--r-- | net-analyzer/nload/files/digest-nload-0.6.0 | 2 | ||||
-rw-r--r-- | net-analyzer/nload/files/digest-nload-0.6.0-r1 | 3 | ||||
-rw-r--r-- | net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch | 15 |
3 files changed, 20 insertions, 0 deletions
diff --git a/net-analyzer/nload/files/digest-nload-0.6.0 b/net-analyzer/nload/files/digest-nload-0.6.0 index c1671d0194f4..821d6ef86e0c 100644 --- a/net-analyzer/nload/files/digest-nload-0.6.0 +++ b/net-analyzer/nload/files/digest-nload-0.6.0 @@ -1 +1,3 @@ MD5 a8859e49176bb50826b52b8345b117d3 nload-0.6.0.tar.gz 121136 +RMD160 d7bcd89d32b90ce4e5676c6630e478cd3e73a9d7 nload-0.6.0.tar.gz 121136 +SHA256 546c7934a1e97aed34982eca6a4f17d33956479f76de9151371fa58eb24766c9 nload-0.6.0.tar.gz 121136 diff --git a/net-analyzer/nload/files/digest-nload-0.6.0-r1 b/net-analyzer/nload/files/digest-nload-0.6.0-r1 new file mode 100644 index 000000000000..821d6ef86e0c --- /dev/null +++ b/net-analyzer/nload/files/digest-nload-0.6.0-r1 @@ -0,0 +1,3 @@ +MD5 a8859e49176bb50826b52b8345b117d3 nload-0.6.0.tar.gz 121136 +RMD160 d7bcd89d32b90ce4e5676c6630e478cd3e73a9d7 nload-0.6.0.tar.gz 121136 +SHA256 546c7934a1e97aed34982eca6a4f17d33956479f76de9151371fa58eb24766c9 nload-0.6.0.tar.gz 121136 diff --git a/net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch b/net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch new file mode 100644 index 000000000000..a856f8ece058 --- /dev/null +++ b/net-analyzer/nload/files/nload-0.6.0-prevent-stripping.patch @@ -0,0 +1,15 @@ +Index: nload-0.6.0/configure.in +=================================================================== +--- nload-0.6.0.orig/configure.in ++++ nload-0.6.0/configure.in +@@ -76,8 +76,8 @@ fi + dnl Adds extra arguments to configure script. + AC_ARG_ENABLE(debug, + AC_HELP_STRING([--enable-debug], [do not strip debugging symbols (default no)]), +- test "$enableval" = "no" && LDFLAGS="$LDFLAGS -s", +- LDFLAGS="$LDFLAGS -s") ++ test "$enableval" = "no" && LDFLAGS="$LDFLAGS", ++ LDFLAGS="$LDFLAGS") + + dnl Checks for library functions. + AC_TYPE_SIGNAL |