discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Backend libraries missing?


From: Alexander Malmberg
Subject: Re: Backend libraries missing?
Date: Wed, 03 Apr 2002 23:47:59 +0200

> relocation error:
> /usr/GNUstep/System/Library/Bundles/libgnustep-back.bundle/ix86/linux-gnu/gnu-gnu-gnu/libgnustep-back:
> undefined symbol: XOpenDisplay

I got this too, and managed to track it down to
make/Instance/bundle.make. Seems that the = there is clearing the += in
rules.make, line 160. With this patch it worked here.

- Alexander Malmberg
Index: bundle.make
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/make/Instance/bundle.make,v
retrieving revision 1.11
diff -u -r1.11 bundle.make
--- bundle.make 3 Apr 2002 00:28:40 -0000       1.11
+++ bundle.make 3 Apr 2002 22:44:38 -0000
@@ -54,7 +54,7 @@
 # On Solaris we don't need to specifies the libraries the bundle needs.
 # How about the rest of the systems? BUNDLE_LIBS is temporary empty.
 # We need this for MS Windows, so use it again!
-BUNDLE_LIBS = $(ADDITIONAL_GUI_LIBS) $(AUXILIARY_GUI_LIBS) $(BACKEND_LIBS) \
+BUNDLE_LIBS += $(ADDITIONAL_GUI_LIBS) $(AUXILIARY_GUI_LIBS) $(BACKEND_LIBS) \
    $(GUI_LIBS) $(ADDITIONAL_TOOL_LIBS) $(AUXILIARY_TOOL_LIBS) \
    $(FND_LIBS) $(ADDITIONAL_OBJC_LIBS) $(AUXILIARY_OBJC_LIBS) $(OBJC_LIBS) \
    $(SYSTEM_LIBS) $(TARGET_SYSTEM_LIBS)

reply via email to

[Prev in Thread] Current Thread [Next in Thread]