tags 456351 + patch user [EMAIL PROTECTED] usertag 456351 + ubuntu-patch hardy thanks
Hello, here is the patch I applied to the Ubuntu package to fix the FTBFS on amd64. The problem is in scite/gtk/makefile: IFaceTable.o is only added to the object list through LUA_OBJS but on amd64 scite is compiled with NO_LUA=1. I've added IFaceTable.o to the object list for the binary so it gets always linked in. Michael --- scite-1.75.orig/scite/gtk/makefile +++ scite-1.75/scite/gtk/makefile @@ -102,7 +102,7 @@ $(PROG): SciTEGTK.o FilePath.o SciTEBase.o SciTEBuffers.o SciTEIO.o StringList.o Exporters.o \ PropSetFile.o MultiplexExtension.o DirectorExtension.o SciTEProps.o Utf8_16.o \ - JobQueue.o GTKMutex.o $(COMPLIB) $(LUA_OBJS) + JobQueue.o GTKMutex.o IFaceTable.o $(COMPLIB) $(LUA_OBJS) $(CC) `$(CONFIGTHREADS)` -rdynamic -Wl,--version-script lua.vers -DGTK $^ -o $@ $(CONFIGLIB) # Automatically generate header dependencies with "make deps" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]