net-libs/libetpan: remove unused patch
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Sun, 15 Jan 2017 09:19:10 +0000 (10:19 +0100)
committerDavid Seifert <soap@gentoo.org>
Sun, 15 Jan 2017 09:49:39 +0000 (10:49 +0100)
Closes: https://github.com/gentoo/gentoo/pull/3488

net-libs/libetpan/files/libetpan-1.0-ldflags.patch [deleted file]

diff --git a/net-libs/libetpan/files/libetpan-1.0-ldflags.patch b/net-libs/libetpan/files/libetpan-1.0-ldflags.patch
deleted file mode 100644 (file)
index 2151282..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- configure.ac.orig  2010-04-20 20:29:01.136283062 +0200
-+++ configure.ac       2010-04-20 20:29:45.884283632 +0200
-@@ -455,11 +455,11 @@
-   for flag in "pthreads" "pthread"; do
-     if test "x$checkpthread" = "xyes"; then
-       AC_MSG_CHECKING([for pthread_create with -$flag])
--      OLDFLAGS="$LDFLAGS"
--      LDFLAGS="-$flag $LDFLAGS"
--      AC_TRY_LINK([], [pthread_create();], 
-+       OLDLIBS="$LIBS"
-+       LIBS="$LIBS -l$flag"
-+       AC_TRY_LINK([], [pthread_create();], 
-                       [pthflag=yes; checkpthread=no], 
--                      [pthflag=no; LDFLAGS="$OLDFLAGS"])
-+                      [pthflag=no; LIBS="$OLDLIBS"])
-       AC_MSG_RESULT($pthflag)
-     fi
-   done