aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libexecinfo/30-linux-makefile.patch
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2011-04-28 02:16:35 -0500
committerWilliam Pitcock <nenolod@dereferenced.org>2011-04-28 02:16:35 -0500
commite427ba6c1122c5977ee78e829c3ac42414ae5f6c (patch)
tree19ae05343c629042f7169e99f5921a5fe116fc66 /testing/libexecinfo/30-linux-makefile.patch
parent22e8167842c2a28e0c5d400da55eb3a6da1462a3 (diff)
downloadaports-e427ba6c1122c5977ee78e829c3ac42414ae5f6c.tar.bz2
aports-e427ba6c1122c5977ee78e829c3ac42414ae5f6c.tar.xz
testing/libexecinfo: removed
Diffstat (limited to 'testing/libexecinfo/30-linux-makefile.patch')
-rw-r--r--testing/libexecinfo/30-linux-makefile.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/testing/libexecinfo/30-linux-makefile.patch b/testing/libexecinfo/30-linux-makefile.patch
deleted file mode 100644
index 3bc8927954..0000000000
--- a/testing/libexecinfo/30-linux-makefile.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- Makefile.orig
-+++ Makefile
-@@ -23,24 +23,25 @@
- # SUCH DAMAGE.
- #
- # $Id: Makefile,v 1.3 2004/07/19 05:19:55 sobomax Exp $
-+#
-+# Linux Makefile by Matt Smith <mcs@darkregion.net>, 2011/01/04
-
--LIB= execinfo
-+CC=cc
-+AR=ar
-+EXECINFO_CFLAGS=$(CFLAGS) -O2 -pipe -fno-strict-aliasing -std=gnu99 -fstack-protector -c
-+EXECINFO_LDFLAGS=$(LDFLAGS)
-
--SRCS= stacktraverse.c stacktraverse.h execinfo.c execinfo.h
-+all: static dynamic
-
--INCS= execinfo.h
-+static:
-+ $(CC) $(EXECINFO_CFLAGS) $(EXECINFO_LDFLAGS) stacktraverse.c
-+ $(CC) $(EXECINFO_CFLAGS) $(EXECINFO_LDFLAGS) execinfo.c
-+ $(AR) rcs libexecinfo.a stacktraverse.o execinfo.o
-
--SHLIB_MAJOR= 1
--SHLIB_MINOR= 0
-+dynamic:
-+ $(CC) -fpic -DPIC $(EXECINFO_CFLAGS) $(EXECINFO_LDFLAGS) stacktraverse.c -o stacktraverse.So
-+ $(CC) -fpic -DPIC $(EXECINFO_CFLAGS) $(EXECINFO_LDFLAGS) execinfo.c -o execinfo.So
-+ $(CC) -shared -Wl,-soname,libexecinfo.so.1 -o libexecinfo.so.1 stacktraverse.So execinfo.So
-
--NOPROFILE= yes
--
--DPADD= ${LIBM}
--LDADD= -lm
--
--#WARNS?= 4
--
--#stacktraverse.c: gen.py
--# ./gen.py > stacktraverse.c
--
--.include <bsd.lib.mk>
-+clean:
-+ rm -rf *.o *.So *.a *.so