summaryrefslogtreecommitdiff
path: root/app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch')
-rw-r--r--app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch b/app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch
deleted file mode 100644
index 8d24a62a89d6..000000000000
--- a/app-benchmarks/filebench/files/filebench-fix-automagic-libtecla-dependency.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: Göktürk Yüksek <gokturk@binghamton.edu>
-Subject: [PATCH] Fix automagic dependency on libtecla
-
-Replace the unconditional AC_CHECK_LIB logic with AC_ARG_WITH to
-eliminate the automagic dependency on libtecla.
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -164,8 +164,11 @@
- AC_CHECK_LIB([kstat], [kstat_open])
- # Use libtecla for autocompletion if it is available. If it
- # is, then conditionally compile auto_comp.c (see Makefile.am)
--AC_CHECK_LIB([tecla], [cpl_add_completion])
--AM_CONDITIONAL(AUTOCOMP_LIBTECLA, test "$ac_cv_lib_tecla_cpl_add_completion" = yes)
-+AC_ARG_WITH([libtecla], AS_HELP_STRING([--with-libtecla], [Build with libtecla for autocompletion support (default: test)]))
-+AS_IF([test "x$with_libtecla" != "xno"], [
-+ AC_CHECK_LIB([tecla], [cpl_add_completion])
-+])
-+AM_CONDITIONAL([AUTOCOMP_LIBTECLA], [test "x$ac_cv_lib_tecla_cpl_add_completion" = "xyes"])
- # Check that librt is installed and supports async IO. First line
- # allows to add librt to the linkers path, second one checks
- # if aio_wait() is in it, third one checks if aio_waitn() is there (usually