trawick     01/08/13 13:04:28

  Modified:    .        configure.in
  Log:
  LINK shouldn't include ALL_LIBS; that puts -lm -lcrypt -lwhatever before
  -o target, which some link commands can't handle; also, it left us with a
  lot of duplicate libraries on link invocations since our Makefiles specify
  the libraries to include too
  
  Revision  Changes    Path
  1.355     +1 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.354
  retrieving revision 1.355
  diff -u -r1.354 -r1.355
  --- configure.in      2001/08/05 23:05:37     1.354
  +++ configure.in      2001/08/13 20:04:28     1.355
  @@ -111,7 +111,7 @@
   
   if test "x$use_libtool" = "xyes"; then
         lt_compile='$(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE) -c $< && 
touch $@'
  -      link='$(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) 
$(ALL_LDFLAGS) $(ALL_LIBS) -o $@'
  +      link='$(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) 
$(ALL_LDFLAGS) -o $@'
         so_ext='lo'
         lib_target='-rpath $(libdir) $$objects'
         export_lib_target='-rpath \$(libdir) \$\$objects'
  
  
  

Reply via email to