This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Undefined vsnprintf in libbansheeengine.a on LynxOS


Hi,

The file libbanshee/engine/buffer.c uses vsnprintf.  If vsnprintf is
provided by libiberty we should make sure that it is listed after
$(BANSHEELIB) when linking the compiler.

OK to apply?

Adam

2004-08-16  Adam Nemet  <anemet@lnxw.com> 
 
        * Makefile.in (LIBS): Move $(LIBIBERTY) after $(BANSHEELIB). 

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1337
diff -u -p -r1.1337 Makefile.in
--- Makefile.in	4 Aug 2004 20:55:04 -0000	1.1337
+++ Makefile.in	16 Aug 2004 21:24:46 -0000
@@ -762,7 +762,7 @@ BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
 
 # How to link with both our special library facilities
 # and the system's installed libraries.
-LIBS = @LIBS@ $(CPPLIB) $(LIBIBERTY) $(LIBINTL) $(LIBICONV) $(BANSHEELIB)
+LIBS = @LIBS@ $(CPPLIB) $(LIBINTL) $(LIBICONV) $(BANSHEELIB) $(LIBIBERTY)
 
 # Any system libraries needed just for GNAT.
 SYSLIBS = @GNAT_LIBEXC@


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]