From kde-devel Fri May 18 07:15:56 2001 From: Dirk Mueller Date: Fri, 18 May 2001 07:15:56 +0000 To: kde-devel Subject: Re: [kdegames/katomic] undefined reference to `KStdGameAction::... X-MARC-Message: https://marc.info/?l=kde-devel&m=99017027723179 MIME-Version: 1 Content-Type: multipart/mixed; boundary="--a8Wt8u1KmwUX3Y2C" --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Don, 17 Mai 2001, The Hermit Hacker wrote: > toplevel.o: In function `AtomTopLevel::createMenu(void)': > toplevel.o(.text+0x35): undefined reference to `KStdGameAction::highscores(QObject const *, char const *, QObject *, char const *) hmm, it picks up the installed libkdegames instead of the one in the module. But all the other games have the same problem. Would the attached patch help ? Dirk --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="katomic.patch" Index: Makefile.am =================================================================== RCS file: /home/kde/kdegames/katomic/Makefile.am,v retrieving revision 1.24 diff -u -3 -d -p -r1.24 Makefile.am --- Makefile.am 2001/04/22 01:12:21 1.24 +++ Makefile.am 2001/05/18 07:15:01 @@ -5,8 +5,8 @@ INCLUDES = -I$(top_srcdir)/libkdegames $ SUBDIRS = . levels katomic_SOURCES = feld.cpp highscore.cpp molek.cpp main.cpp toplevel.cpp levelnames.cpp configbox.cpp gamewidget.cpp -katomic_LDFLAGS = -L$(top_builddir)/libkdegames $(all_libraries) $(KDE_RPATH) -katomic_LDADD = -lkdegames $(LIB_KDEUI) +katomic_LDFLAGS = $(all_libraries) $(KDE_RPATH) +katomic_LDADD = $(top_builddir)/libkdegames/libkdegames.la $(LIB_KDEUI) EXTRA_DIST = katomic.xpm katomic.desktop --a8Wt8u1KmwUX3Y2C-- >> Visit http://master.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe <<