aboutsummaryrefslogtreecommitdiff
path: root/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'devel/pwlib/files/patch-src-ptlib-unix-udll.cxx')
-rw-r--r--devel/pwlib/files/patch-src-ptlib-unix-udll.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx b/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx
deleted file mode 100644
index 8cfadebbfe9f..000000000000
--- a/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/ptlib/unix/udll.cxx.orig Wed Nov 30 13:47:42 2005
-+++ src/ptlib/unix/udll.cxx Wed Apr 5 22:36:51 2006
-@@ -382,6 +382,10 @@
- dllHandle = dlopen((char *)(const char *)name, RTLD_NOW);
- #else
-+ const char *dummyerr = dlerror();
- dllHandle = dlopen((const char *)name, RTLD_NOW);
-+ const char *err = dlerror();
-+ if (err != NULL)
-+ cerr << err << '\n';
- #endif
-
- return IsLoaded();