summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-09-15 02:22:33 +0000
committerAnthony G. Basile <blueness@gentoo.org>2012-09-15 02:22:33 +0000
commite3e602df94b474f74cffb33b911c6a00c32c371f (patch)
treebcba402baed2dfc23e9e61c4dc7a9193fb732ed5 /net-misc/tor/files
parentStable arm, bug #434882 (diff)
downloadgentoo-2-e3e602df94b474f74cffb33b911c6a00c32c371f.tar.gz
gentoo-2-e3e602df94b474f74cffb33b911c6a00c32c371f.tar.bz2
gentoo-2-e3e602df94b474f74cffb33b911c6a00c32c371f.zip
Remove older RC and older patch
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/tor/files')
-rw-r--r--net-misc/tor/files/tor-0.2.1.30-respect-CFLAGS.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/net-misc/tor/files/tor-0.2.1.30-respect-CFLAGS.patch b/net-misc/tor/files/tor-0.2.1.30-respect-CFLAGS.patch
deleted file mode 100644
index 3776756cacf6..000000000000
--- a/net-misc/tor/files/tor-0.2.1.30-respect-CFLAGS.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff -Naur tor-0.2.1.30.orig/configure.in tor-0.2.1.30/configure.in
---- tor-0.2.1.30.orig/configure.in 2011-02-23 03:25:39.000000000 -0500
-+++ tor-0.2.1.30/configure.in 2011-04-09 13:25:40.000000000 -0400
-@@ -10,6 +10,11 @@
-
- AC_CANONICAL_HOST
-
-+GENTOO_CFLAGS="$CFLAGS"
-+GENTOO_LDFLAGS="$LDFLAGS"
-+CFLAGS=
-+LDFLAGS=
-+
- if test -f /etc/redhat-release ; then
- if test -f /usr/kerberos/include ; then
- CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include"
-@@ -784,12 +789,11 @@
- # Set CFLAGS _after_ all the above checks, since our warnings are stricter
- # than autoconf's macros like.
- if test "$GCC" = yes; then
-- CFLAGS="$CFLAGS -Wall -g -O2"
-+ CFLAGS="$CFLAGS -Wall"
- # Disable GCC's strict aliasing checks. They are an hours-to-debug
- # accident waiting to happen.
- CFLAGS="$CFLAGS -fno-strict-aliasing"
- else
-- CFLAGS="$CFLAGS -g -O"
- enable_gcc_warnings=no
- enable_gcc_warnings_advisory=no
- fi
-@@ -865,6 +869,8 @@
-
-
- CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib"
-+CFLAGS="$CFLAGS $GENTOO_CFLAGS"
-+LDFLAGS="$LDFLAGS $GENTOO_LDFLAGS"
-
- AC_CONFIG_FILES([Makefile tor.spec Doxyfile contrib/tor.sh contrib/torctl contrib/torify contrib/tor.logrotate contrib/Makefile contrib/osx/Makefile contrib/osx/TorBundleDesc.plist contrib/osx/TorBundleInfo.plist contrib/osx/TorDesc.plist contrib/osx/TorInfo.plist contrib/osx/TorStartupDesc.plist src/config/torrc.sample doc/tor.1 src/Makefile doc/Makefile doc/design-paper/Makefile src/config/Makefile src/common/Makefile src/or/Makefile src/win32/Makefile src/tools/Makefile contrib/suse/Makefile contrib/suse/tor.sh])
- AC_OUTPUT