From 60970495b0baf88c859c79fc2fac74f0f75d017f Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 16 Jan 2011 18:51:46 +0100 Subject: [PATCH] CMT LADSPA plugins: get rid of -nostartfiles linker flag Using the -nostartfiles linker flag makes the CMT LADSPA plugin library not being linked against neccessary libraries on recent Linux systems. Therefore remove it. --- plugins/ladspa_effect/cmt/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/ladspa_effect/cmt/CMakeLists.txt b/plugins/ladspa_effect/cmt/CMakeLists.txt index b05912fc7..3bd7cc229 100644 --- a/plugins/ladspa_effect/cmt/CMakeLists.txt +++ b/plugins/ladspa_effect/cmt/CMakeLists.txt @@ -16,7 +16,3 @@ IF(NOT LMMS_BUILD_APPLE) SET_TARGET_PROPERTIES(cmt PROPERTIES LINK_FLAGS "${LINK_FLAGS} -shared -Wl,-no-undefined") ENDIF(NOT LMMS_BUILD_APPLE) -IF(LMMS_BUILD_LINUX) - SET_TARGET_PROPERTIES(cmt PROPERTIES LINK_FLAGS "${LINK_FLAGS} -nostartfiles") -ENDIF(LMMS_BUILD_LINUX) -