| Summary: | error creating ../kopete/protocols/jabber/kopete_jabber.la. Exit status 1 | ||
|---|---|---|---|
| Product: | [Unmaintained] kopete | Reporter: | bauerfichtner |
| Component: | general | Assignee: | Kopete Developers <kopete-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
bauerfichtner
2006-03-17 12:45:24 UTC
I'll assume that you have ilbc installed. What does the configure output say about finding ilbc? I am also curious as to why things are being relinked on install, as that's not default behavior. This is what the configure output says about finding ilbc: checking iLBC_decode.h usability... yes checking iLBC_decode.h presence... yes checking for iLBC_decode.h... yes checking for iLBC_decode in -lilbc... yes If I call configure without "--enable-jingle" and without "--with-ilbc=/usr/local", everything works fine. It also works fine if I compile without support for iLBC. So, if I configure the source with "./configure --prefix=/opt/kde3 --disable-debug --without-xmms --enable-jingle", everything works for me. The only annoying thing is the following message, which never appeared before, the jabber-plugin is compiled anyway, but this message is somewhat strange: "You're missing libidn or the libidn development package Kopete's Jabber plugin will not be compiled. If you want Jabber support in Kopete, You can download libidn from http://www.gnu.org/software/libidn or find a binary package for your platform." Kopete does not compile when support for iLBC should be included. At the moment, I am using the latest svn (which is 524774). But compiling with support for iLBC did work in earlier versions. I hope this can be fixed somehow. Output from "make" can be provided, if required. SVN commit 527643 by mattr:
disable ilbc. perhaps this is a bit of a cop-out, but i don't care.
BUG: 123779
M +1 -30 configure.in.in
--- branches/kopete/0.12/kopete/protocols/jabber/jingle/configure.in.in #527642:527643
@@ -78,37 +78,8 @@
# AC_SUBST(SPEEX_LIBS)
# CPPFLAGS=$CPPFLAGS_save
# LDFLAGS=$LDFLAGS_save
+ilbc_found="no"
-AC_ARG_WITH( ilbc,
- [ --with-ilbc Set prefix where ilbc headers and libs can be found (ex:/usr, /usr/local, none to disable ilbc support) [default=/usr] ],
- [ ilbc_prefix=${withval}],[ ilbc_prefix="/usr" ])
-
-if test "$ilbc_prefix" = "none" ; then
- AC_MSG_NOTICE([iLBC codec support disabled. ])
-else
- ILBC_CFLAGS=" -I${ilbc_prefix}/include/ilbc"
- ILBC_LIBS="-L${ilbc_prefix}/lib -lilbc -lm"
- CPPFLAGS_save=$CPPFLAGS
- CPPFLAGS=$ILBC_CFLAGS
- LDFLAGS_save=$LDFLAGS
- LDFLAGS=$ILBC_LIBS
- AC_CHECK_HEADERS(iLBC_decode.h,[AC_CHECK_LIB(ilbc,iLBC_decode,ilbc_found=yes,ilbc_found=no)
- ],ilbc_found=no)
-
- CPPFLAGS=$CPPFLAGS_save
- LDFLAGS=$LDFLAGS_save
-
- if test "$ilbc_found" = "no" ; then
- AC_MSG_WARN([Could not find ilbc headers or libs. Please install ilbc package from http://www.linphone.org if you want iLBC codec support in Kopete Jabber plugin.])
- ILBC_CFLAGS=
- ILBC_LIBS=
- else
- AC_DEFINE(HAVE_ILBC,1,[Defined when we have ilbc codec lib])
- AC_SUBST(ILBC_CFLAGS)
- AC_SUBST(ILBC_LIBS)
- fi
-fi
-
AM_CONDITIONAL(include_jingle, test "$with_jingle" = "yes")
if test "$with_jingle" = "yes" ; then
|