summaryrefslogtreecommitdiff
path: root/dev-libs/jemalloc
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-03 18:00:06 +0200
committerJory A. Pratt <anarchy@gentoo.org>2016-09-04 17:58:44 -0500
commit742d5110137c2031c6ff08faf1163aeed0f5e836 (patch)
tree10af5dec841e8899052d4321fe087088cc4e9dfb /dev-libs/jemalloc
parent41c94b067ff86fa3f8f11c80e9b478755cb41ce4 (diff)
downloadgentoo-742d5110137c2031c6ff08faf1163aeed0f5e836.tar.gz
gentoo-742d5110137c2031c6ff08faf1163aeed0f5e836.tar.xz
dev-libs/jemalloc: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2230 Signed-off-by: Jory A. Pratt <anarchy@gentoo.org>
Diffstat (limited to 'dev-libs/jemalloc')
-rw-r--r--dev-libs/jemalloc/files/jemalloc-fix-ar-call.patch59
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-libs/jemalloc/files/jemalloc-fix-ar-call.patch b/dev-libs/jemalloc/files/jemalloc-fix-ar-call.patch
deleted file mode 100644
index 6d81cda55d9..00000000000
--- a/dev-libs/jemalloc/files/jemalloc-fix-ar-call.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index 7481047..478becb 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -55,6 +55,8 @@ PIC_CFLAGS = @PIC_CFLAGS@
- CTARGET = @CTARGET@
- LDTARGET = @LDTARGET@
- MKLIB = @MKLIB@
-+AR = @AR@
-+ARFLAGS = crus
- CC_MM = @CC_MM@
-
- ifeq (macho, $(ABI))
-@@ -185,7 +187,7 @@ $(objroot)lib/$(LIBJEMALLOC)_s.$(A) : $(COBJS)
-
- $(STATIC_LIBS):
- @mkdir -p $(@D)
-- $(MKLIB) $+
-+ $(AR) $(ARFLAGS) $@ $+
-
- $(objroot)test/bitmap$(EXE): $(objroot)src/bitmap.$(O)
-
-diff --git a/configure.ac b/configure.ac
-index c270662..f4b4c21 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -226,9 +226,13 @@ PIC_CFLAGS='-fPIC -DPIC'
- CTARGET='-o $@'
- LDTARGET='-o $@'
- EXTRA_LDFLAGS=
--MKLIB='ar crus $@'
- CC_MM=1
-
-+AN_MAKEVAR([AR], [AC_PROG_AR])
-+AN_PROGRAM([ar], [AC_PROG_AR])
-+AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
-+AC_PROG_AR
-+
- dnl Platform-specific settings. abi and RPATH can probably be determined
- dnl programmatically, but doing so is error-prone, which makes it generally
- dnl not worth the trouble.
-@@ -310,7 +314,8 @@ case "${host}" in
- EXTRA_LDFLAGS="-link -DEBUG"
- CTARGET='-Fo$@'
- LDTARGET='-Fe$@'
-- MKLIB='lib -nologo -out:$@'
-+ AR='lib'
-+ ARFLAGS='-nologo -out:'
- CC_MM=
- else
- importlib="${so}"
-@@ -403,7 +408,6 @@ AC_SUBST([enable_autogen])
-
- AC_PROG_INSTALL
- AC_PROG_RANLIB
--AC_PATH_PROG([AR], [ar], [false], [$PATH])
- AC_PATH_PROG([LD], [ld], [false], [$PATH])
- AC_PATH_PROG([AUTOCONF], [autoconf], [false], [$PATH])
-