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]

Java subdir needs to use INTLLIBS


The Java subdir needs to use INTLLIBS for systems where the intl support
is not in libc.  This change mimics the equivalent changes in the cp subdir.

(Note: chill also needs to use INTLLIBS, but it's more tricky since it 
 does not have autoconf support)

2000-06-01  Fred Fish  <fnf@be.com>

	* Makefile.in (top_builddir): Define.
	(INTLLIBS): Assign using @INTLLIBS@ substitution.
	(LIBS): Use INTLLIBS.
	(LIBDEPS): Use INTLLIBS.

Index: gcc/java/Makefile.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/java/Makefile.in,v
retrieving revision 1.50
diff -c -p -r1.50 Makefile.in
*** Makefile.in	2000/03/04 22:27:35	1.50
--- Makefile.in	2000/06/01 18:44:47
*************** libgcj_zip = $(datadir)/libgcj.zip
*** 102,107 ****
--- 102,113 ----
  # Additional system libraries to link with.
  CLIB=
  
+ # Top build directory, relative to here.
+ top_builddir = ..
+ 
+ # Internationalization library.
+ INTLLIBS = @INTLLIBS@
+ 
  # Choose the real default target.
  ALL=all
  
*************** LIBIBERTY = ../../libiberty/libiberty.a
*** 144,151 ****
  
  # How to link with both our special library facilities
  # and the system's installed libraries.
! LIBS = $(LIBIBERTY) $(CLIB)
! LIBDEPS = $(LIBIBERTY) ../errors.o
  
  # Specify the directories to be searched for header files.
  # Both . and srcdir are used, in that order,
--- 150,157 ----
  
  # How to link with both our special library facilities
  # and the system's installed libraries.
! LIBS = $(INTLLIBS) $(LIBIBERTY) $(CLIB)
! LIBDEPS = $(INTLLIBS) $(LIBIBERTY) ../errors.o
  
  # Specify the directories to be searched for header files.
  # Both . and srcdir are used, in that order,

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