You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2002/03/20 17:05:33 UTC

cvs commit: httpd-2.0 Makefile.in acinclude.m4

gregames    02/03/20 08:05:33

  Modified:    .        Makefile.in acinclude.m4
  Log:
  OS/390: install apachecore.[dll|x] in lib/ rather than bin/ .
  
  The LIBPATH env var already must contain the path to lib/ in order to pick up
  apr and apr-util.  If we install the core dll there as well, LIBPATH becomes
  simpler.
  
  Revision  Changes    Path
  1.103     +1 -1      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.102
  retrieving revision 1.103
  diff -u -r1.102 -r1.103
  --- Makefile.in	14 Mar 2002 03:16:50 -0000	1.102
  +++ Makefile.in	20 Mar 2002 16:05:33 -0000	1.103
  @@ -132,7 +132,7 @@
   	@for ext in dll x; do \
   		file=apachecore.$$ext; \
   		if test -f $$file; then \
  -			cp -p $$file $(bindir); \
  +			cp -p $$file $(libdir); \
   		fi; \
   	done; \
   	file=httpd.dll; \
  
  
  
  1.117     +1 -0      httpd-2.0/acinclude.m4
  
  Index: acinclude.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/acinclude.m4,v
  retrieving revision 1.116
  retrieving revision 1.117
  diff -u -r1.116 -r1.117
  --- acinclude.m4	14 Mar 2002 17:18:32 -0000	1.116
  +++ acinclude.m4	20 Mar 2002 16:05:33 -0000	1.117
  @@ -47,6 +47,7 @@
     APACHE_SUBST(datadir)
     APACHE_SUBST(localstatedir)
     APACHE_SUBST(mandir)
  +  APACHE_SUBST(libdir)
     APACHE_SUBST(libexecdir)
     APACHE_SUBST(htdocsdir)
     APACHE_SUBST(manualdir)