diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-03-17 22:41:15 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-03-17 22:41:15 +0000 |
commit | 9eb3c3fbfe6ebe203bad5e6b9cda395dd4917f2c (patch) | |
tree | 7c5878ca55e682b89ed7140cd895372102f64cb6 | |
parent | f92982c3199c4c51172cd6bca7d47a6a5d6ccceb (diff) |
fixed export dynamic flag to work properly and not give a warning about the 'xport_dynamic' symbol
svn path=/trunk/externals/pidip/; revision=13222
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index a0bda6d..9b5af14 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,7 +46,7 @@ pidip.pd_darwin: pdp_pidip_all pidip.pd_linux: pdp_pidip_all rm -f pidip.pd_linux - g++ -export_dynamic -shared -o pidip.pd_linux modules/*.o system/*.o $(THEORA_LIBS) $(PDP_PIDIP_LIBS) $(IMLIB_LIBS) $(DC1394_LIBS) + g++ -Wl,--export-dynamic -shared -o pidip.pd_linux modules/*.o system/*.o $(THEORA_LIBS) $(PDP_PIDIP_LIBS) $(IMLIB_LIBS) $(DC1394_LIBS) strip --strip-unneeded pidip.pd_linux clean: |