diff options
author | Robert Xu <robxu9@gmail.com> | 2011-11-10 18:04:39 -0500 |
---|---|---|
committer | Robert Xu <robxu9@gmail.com> | 2011-11-10 18:04:39 -0500 |
commit | 21fcfa3348213aa87f0e3aef62ca4720c6d31cb7 (patch) | |
tree | 2cfb64c59322628e613ed0895e3c3694d3abe6bd /opensuse/arts/avoid_la_files.diff | |
parent | 8667643bff14a60d8571c599efd3e48bed3e3b12 (diff) | |
download | tde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.tar.gz tde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.zip |
initial commit to suse branch: eclipse integration
Diffstat (limited to 'opensuse/arts/avoid_la_files.diff')
-rw-r--r-- | opensuse/arts/avoid_la_files.diff | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/opensuse/arts/avoid_la_files.diff b/opensuse/arts/avoid_la_files.diff deleted file mode 100644 index 7c592d687..000000000 --- a/opensuse/arts/avoid_la_files.diff +++ /dev/null @@ -1,26 +0,0 @@ ---- artsc/Makefile.am -+++ artsc/Makefile.am -@@ -1,4 +1,4 @@ --AM_CFLAGS = -DARTSC_BACKEND='"$(libdir)/libartscbackend.la"' -+AM_CFLAGS = -DARTSC_BACKEND='"$(libdir)/libartscbackend.so"' - AM_CPPFLAGS = -DCOMPILING_ARTSC - lib_LTLIBRARIES = libartsc.la libartscbackend.la libartsdsp.la libartsdsp_st.la - FLOWLIBS = $(top_builddir)/flow/libartsflow.la ---- mcop/extensionloader.cc -+++ mcop/extensionloader.cc -@@ -56,7 +56,14 @@ - /* this will catch all startup classes here */ - StartupManager::setExtensionLoader(this); - -- lt_dlinit(); -+ lt_dlinit(); -+ -+ string::size_type len = dlfilename.length(); -+ if (len > 0 && dlfilename[len-1] == 'a' && dlfilename[len-2] == 'l') { -+ dlfilename[len-1] = 'o'; -+ dlfilename[len-2] = 's'; -+ } -+ - handle = lt_dlopen(dlfilename.c_str()); - - StartupManager::setExtensionLoader(0); |