diff options
author | Slávek Banko <[email protected]> | 2012-06-13 08:37:52 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-13 08:37:52 +0200 |
commit | 5c69fcd39111465de16c933763d3c918703048d8 (patch) | |
tree | ccd0a0cf7e7d30a8ebe16a71e7e26ede6ee7a66c /tools/thumbnail | |
parent | 17477649bd724528a78e6c772244dc1a63f38202 (diff) | |
download | koffice-5c69fcd39111465de16c933763d3c918703048d8.tar.gz koffice-5c69fcd39111465de16c933763d3c918703048d8.zip |
Fix FTBFS due to missing libraries
Clean up lib paths in LDFLAGS - moved to LIBADD
For KWord and and KPresenter added linking kspell2
For KSpread added linking kutils
This closes Bug 657
Diffstat (limited to 'tools/thumbnail')
-rw-r--r-- | tools/thumbnail/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/thumbnail/Makefile.am b/tools/thumbnail/Makefile.am index f63fd83c..cf41afd1 100644 --- a/tools/thumbnail/Makefile.am +++ b/tools/thumbnail/Makefile.am @@ -4,12 +4,12 @@ METASOURCES = AUTO kde_module_LTLIBRARIES = clipartthumbnail.la kofficethumbnail.la clipartthumbnail_la_SOURCES = clipartcreator.cpp -clipartthumbnail_la_LIBADD = $(LIB_KOFFICECORE) # for KoClipartCollection -clipartthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -lkio -lkparts -L../../lib/kofficecore/.libs/ -lkofficecore -L../../lib/kofficeui/.libs/ -lkofficeui -L../../lib/store/.libs/ -lkstore +clipartthumbnail_la_LIBADD = $(KOFFICE_LIBS) # for KoClipartCollection +clipartthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -lkio -lkparts kofficethumbnail_la_SOURCES = kofficecreator.cpp -kofficethumbnail_la_LIBADD = $(LIB_KOFFICECORE) -kofficethumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -lkio -lkparts -L../../lib/kofficecore/.libs/ -lkofficecore -L../../lib/kofficeui/.libs/ -lkofficeui -L../../lib/store/.libs/ -lkstore +kofficethumbnail_la_LIBADD = $(KOFFICE_LIBS) +kofficethumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -lkio -lkparts # otherofficethumbnail.desktop is currently not installed, as it gives too many problems kde_services_DATA = clipartthumbnail.desktop kofficethumbnail.desktop |