From 9b586f478b95a4123e31c0235d61ce794665bc38 Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Sun, 7 May 2006 13:02:10 +0000 Subject: - Use a better way to detect SDL header - Add WITH_ESOUND knob and enable the plugin build - Fix bsdvideo (bktr(4)) plugin and make it buildable on more archs - Add a small error handler to detect unresolved symbols in plugins - Add more plugins to pkg-plist - Add experimental support for firewire(4) based video devices. The segment of the Makefile is intentionally commented out. PR: ports/95422, ports/96624 Submitted by: Joerg Pulz , Steve Ames (maintainer) Approved by: Steve Ames (maintainer) --- devel/pwlib/files/patch-src-ptlib-unix-udll.cxx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 devel/pwlib/files/patch-src-ptlib-unix-udll.cxx (limited to 'devel/pwlib/files/patch-src-ptlib-unix-udll.cxx') diff --git a/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx b/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx new file mode 100644 index 000000000000..8cfadebbfe9f --- /dev/null +++ b/devel/pwlib/files/patch-src-ptlib-unix-udll.cxx @@ -0,0 +1,13 @@ +--- 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(); -- cgit v1.2.3