diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-26 17:52:24 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-26 17:52:24 +0000 |
commit | e7d3e8c4637fbcfcfc158806eb8c943c1bc65e9d (patch) | |
tree | 585659d62cb8a8f33a7b02093ab9413f83a8f476 | |
parent | 6a4cb4973e22811ee208576b1a88b9688dd5c7c5 (diff) | |
download | tdenetwork-e7d3e8c4637fbcfcfc158806eb8c943c1bc65e9d.tar.gz tdenetwork-e7d3e8c4637fbcfcfc158806eb8c943c1bc65e9d.zip |
Fix failure to launch Kopete when statistics module is enabled due to faulty SQLite linkage when Autotools is used to build kdenetwork
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1260896 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | kopete/plugins/statistics/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/plugins/statistics/Makefile.am b/kopete/plugins/statistics/Makefile.am index 35540a8d..305e6989 100644 --- a/kopete/plugins/statistics/Makefile.am +++ b/kopete/plugins/statistics/Makefile.am @@ -6,8 +6,8 @@ kde_module_LTLIBRARIES = kopete_statistics.la kopete_statistics_la_SOURCES = statisticsplugin.cpp statisticsdb.cpp statisticsdialog.cpp statisticswidget.ui statisticscontact.cpp statisticsdcopiface.skel -kopete_statistics_la_LDFLAGS = -module -no-undefined $(KDE_PLUGIN) $(all_libraries) -kopete_statistics_la_LIBADD = ../../libkopete/libkopete.la +kopete_statistics_la_LDFLAGS = -module -no-undefined $(KDE_PLUGIN) $(all_libraries) -lsqlite3 +kopete_statistics_la_LIBADD = ../../libkopete/libkopete.la -lsqlite3 service_DATA = kopete_statistics.desktop servicedir = $(kde_servicesdir) |