summaryrefslogtreecommitdiff
path: root/net-libs/libetpan/files/libetpan-1.0-ldflags.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-libs/libetpan/files/libetpan-1.0-ldflags.patch')
-rw-r--r--net-libs/libetpan/files/libetpan-1.0-ldflags.patch18
1 files changed, 0 insertions, 18 deletions
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
index 215128283f3..00000000000
--- a/net-libs/libetpan/files/libetpan-1.0-ldflags.patch
+++ /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