diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-07-03 16:11:44 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-07-07 07:18:14 +0000 |
commit | f7ac3935da76c33e9637c64a80869b750e96be0f (patch) | |
tree | 6fce87dc8d1ca378d6123b9dfafedc788258e36f /app-benchmarks | |
parent | app-backup/deja-dup: remove unused patches (diff) | |
download | gentoo-f7ac3935da76c33e9637c64a80869b750e96be0f.tar.gz gentoo-f7ac3935da76c33e9637c64a80869b750e96be0f.tar.bz2 gentoo-f7ac3935da76c33e9637c64a80869b750e96be0f.zip |
app-benchmarks/httperf: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/1826
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff | 20 | ||||
-rw-r--r-- | app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff | 17 |
2 files changed, 0 insertions, 37 deletions
diff --git a/app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff b/app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff deleted file mode 100644 index 018fa03cabe4..000000000000 --- a/app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff +++ /dev/null @@ -1,20 +0,0 @@ -diff --exclude='*~' --exclude='.*' -I '$Id:' -urN httperf-0.8.orig/configure.in httperf-0.8/configure.in ---- httperf-0.8.orig/configure.in 2005-08-17 15:51:17.000000000 -0400 -+++ httperf-0.8/configure.in 2005-08-17 16:06:20.000000000 -0400 -@@ -39,8 +39,14 @@ - dnl Checks for libraries. - dnl Replace `main' with a function in -lm: - AC_CHECK_LIB(m, main) --AC_CHECK_LIB(crypto, main) --AC_CHECK_LIB(ssl, SSL_version) -+ -+AC_MSG_CHECKING([whether to enable SSL support]) -+AC_ARG_ENABLE(ssl, [ --enable-ssl Enable SSL support]) -+AC_MSG_RESULT([$enable_ssl]) -+if test "$enable_ssl" = yes; then -+ AC_CHECK_LIB(crypto, main) -+ AC_CHECK_LIB(ssl, SSL_version) -+fi - - - dnl Checks for header files. diff --git a/app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff b/app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff deleted file mode 100644 index f905224e2de3..000000000000 --- a/app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff +++ /dev/null @@ -1,17 +0,0 @@ -diff --exclude='*~' --exclude='.*' -I '$Id:' -urN httperf-0.8.orig/Makefile.in httperf-0.8/Makefile.in ---- httperf-0.8.orig/Makefile.in 2005-08-17 16:07:21.000000000 -0400 -+++ httperf-0.8/Makefile.in 2005-08-17 16:34:50.000000000 -0400 -@@ -51,9 +51,10 @@ - $(LINK) idleconn.o $(LIBS) - - install: install-recursive httperf -- $(MKDIR) $(bindir) $(mandir)/man1 -- $(INSTALL_PROGRAM) httperf $(bindir)/httperf -- $(INSTALL_DATA) $(srcdir)/httperf.man $(mandir)/man1/httperf.1 -+ $(MKDIR) $(DESTDIR)$(bindir) $(mandir)/man1 -+ $(INSTALL_PROGRAM) httperf $(DESTDIR)$(bindir)/httperf -+ $(MKDIR) $(DESTDIR)$(mandir)/man1 -+ $(INSTALL_DATA) $(srcdir)/httperf.man $(DESTDIR)$(mandir)/man1/httperf.1 - - ttest: ttest.o timer.o - |