You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2002/02/08 22:02:09 UTC

cvs commit: apr-util/test Makefile.in

jerenkrantz    02/02/08 13:02:09

  Modified:    test     Makefile.in
  Log:
  APR_LIBS isn't needed as it is in LIBS *and* it's also now a real LIBS
  statement instead of a path to libapr.la
  
  Revision  Changes    Path
  1.22      +4 -4      apr-util/test/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/test/Makefile.in,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- Makefile.in	6 Feb 2002 12:42:50 -0000	1.21
  +++ Makefile.in	8 Feb 2002 21:02:09 -0000	1.22
  @@ -12,21 +12,21 @@
   test: $(PROGRAMS)
   
   testdbm_OBJECTS = testdbm.lo
  -testdbm_LDADD =  ../libaprutil.la @APR_LIBS@
  +testdbm_LDADD =  ../libaprutil.la
   testdbm: $(testdbm_OBJECTS) $(testdbm_LDADD)
   	$(LINK) $(testdbm_OBJECTS) $(testdbm_LDADD) $(LIBS)
   
   testdate_OBJECTS = testdate.lo
  -testdate_LDADD =  ../libaprutil.la @APR_LIBS@
  +testdate_LDADD =  ../libaprutil.la
   testdate: $(testdate_OBJECTS) $(testdate_LDADD)
   	$(LINK) $(testdate_OBJECTS) $(testdate_LDADD) $(LIBS)
   
   testxml_OBJECTS = testxml.lo
  -testxml_LDADD =  ../libaprutil.la @APR_LIBS@
  +testxml_LDADD =  ../libaprutil.la
   testxml: $(testxml_OBJECTS) $(testxml_LDADD)
   	$(LINK) $(testxml_OBJECTS) $(testxml_LDADD) $(LIBS)
   
   testmd4_OBJECTS = testmd4.lo
  -testmd4_LDADD =  ../libaprutil.la @APR_LIBS@
  +testmd4_LDADD =  ../libaprutil.la
   testmd4: $(testmd4_OBJECTS) $(testmd4_LDADD)
   	$(LINK) $(testmd4_OBJECTS) $(testmd4_LDADD) $(LIBS)
  
  
  

Re: cvs commit: apr-util/test Makefile.in

Posted by Greg Stein <gs...@lyra.org>.
On Fri, Feb 08, 2002 at 09:02:09PM -0000, jerenkrantz@apache.org wrote:
> jerenkrantz    02/02/08 13:02:09
> 
>   Modified:    test     Makefile.in
>   Log:
>   APR_LIBS isn't needed as it is in LIBS *and* it's also now a real LIBS
>   statement instead of a path to libapr.la

I had added APR_LIBS because I wanted to stop screwing around with the LIBS
value. When stuff is put into LIBS, the configure script itself will use
those values when linking. I think we want to leave that to the user to set
according to their platform and how they want configure's internal links to
operate.

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/