From kdevelop-bugs Thu Oct 28 18:22:17 2004 From: kdevelop-bugs-admin () barney ! cs ! uni-potsdam ! de Date: Thu, 28 Oct 2004 18:22:17 +0000 To: kdevelop-bugs Subject: [Bug 91559] Clanlib template is missing -lclanSignals which makes configure/build fail (have solutio Message-Id: <20041028182217.11305.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306931105449 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=91559 amilcar ida ing tu-bs de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From amilcar ida ing tu-bs de 2004-10-28 20:22 ------- CVS commit by aclu: add missing -lclanSignals BUG: 91559 M +1 -1 app-configure.in 1.4 M +1 -1 src-Makefile.am 1.3 --- kdevelop/languages/cpp/app_templates/clanlib/app-configure.in #1.3:1.4 @ -14,5 +14,5 @ AC_MSG_ERROR([Couldn't find Clanlib headers.])) -AC_CHECK_LIB(clanApp, main, , AC_ERROR([Couldn't find Clanlib libraries]), -lclanCore -ldl) +AC_CHECK_LIB(clanApp, main, , AC_ERROR([Couldn't find Clanlib libraries]), -lclanCore -lclanSignals -ldl) AC_LANG_RESTORE --- kdevelop/languages/cpp/app_templates/clanlib/src-Makefile.am #1.2:1.3 @ -1,4 +1,4 @ bin_PROGRAMS = %{APPNAMELC} %{APPNAMELC}_SOURCES = main.cpp -%{APPNAMELC}_LDADD = -lclanCore -lclanApp -lclanDisplay -lclanGL -lclanSound +%{APPNAMELC}_LDADD = -lclanCore -lclanApp -lclanDisplay -lclanGL -lclanSound -lclanSignals