From kde-core-devel Thu Mar 01 16:18:20 2007 From: Laurent Montel Date: Thu, 01 Mar 2007 16:18:20 +0000 To: kde-core-devel Subject: Re: libart_lgpl 2.3.18+ breaks kdelibs3 Message-Id: <200703011718.20995.lmontel () mandriva ! com> X-MARC-Message: https://marc.info/?l=kde-core-devel&m=117277196223668 On Thursday 01 March 2007, Michael Nottebrock wrote: > When linking libkdecore, this happens now: > > ./.libs/libkdecore.so: undefined reference to `art_alloc(unsigned int)' > ./.libs/libkdecore.so: undefined reference to `art_free(void*)' > ./.libs/libkdecore.so: undefined reference to `art_realloc(void*, unsigned > int)' > > Does anyone have a workaround/patch? Yes: - libart_lgpl-2.3.19/art_misc.h.extern-c 2007-01-02 00:59:22.000000000 +0100 +++ libart_lgpl-2.3.19/art_misc.h 2007-03-01 09:19:06.000000000 +0100 @@ -34,9 +34,15 @@ #include #endif +#ifdef __cplusplus +extern "C" { +#endif void *art_alloc(size_t size); void art_free(void *ptr); void *art_realloc(void *ptr, size_t size); +#ifdef __cplusplus +} +#endif /* __cplusplus */ /* These aren't, strictly speaking, configuration macros, but they're damn handy to have around, and may be worth playing with for ~