You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2001/01/19 21:44:46 UTC

cvs commit: apr/helpers rules.mk.in

rbb         01/01/19 12:44:46

  Modified:    .        CHANGES
               helpers  rules.mk.in
  Log:
  Fix make depend.
  
  Revision  Changes    Path
  1.43      +2 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- CHANGES	2001/01/19 03:13:00	1.42
  +++ CHANGES	2001/01/19 20:44:45	1.43
  @@ -1,5 +1,7 @@
   Changes with APR b1
   
  +  *) Fix make depend.  [Ryan Bloom]
  +
     *) All dso implementations now register a cleanup to unload the DSO
        when it is loaded.  If the pool is removed, we really do need to
        remove the DSO.  In the past, different platforms behaved differently
  
  
  
  1.2       +3 -1      apr/helpers/rules.mk.in
  
  Index: rules.mk.in
  ===================================================================
  RCS file: /home/cvs/apr/helpers/rules.mk.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- rules.mk.in	2001/01/09 11:05:50	1.1
  +++ rules.mk.in	2001/01/19 20:44:46	1.2
  @@ -118,7 +118,9 @@
   	    made_local=n/a; \
   	fi; \
   	if test -z "$$made_local"; then \
  -	    $(MAKE) "local-$$otarget" || exit 1; \
  +	    if test "$$otarget" != "depend" || test `pwd` != "$(top_builddir)"; then \
  +	        $(MAKE) "local-$$otarget" || exit 1; \
  +	    fi; \
   	fi
   
   local-clean: x-local-clean
  
  
  

Re: cvs commit: apr/helpers rules.mk.in

Posted by rb...@covalent.net.
There are no .c files at the top level of apr, and that caused an
error.  This was reported yesterday by Tony Finch.

The error as he posted it was:

/home/fanf/apache/httpd-2.0/srclib/apr/helpers/mkdep.sh -I./include
-I../include -g -O2 -g -Wall -g -Wall -Wmissing-prototypes
-Wstrict-prototypes
-Wmissing-declarations -pthread  -D_REENTRANT -D_THREAD_SAFE  -I./include
-I../include *.c
gcc: *.c: No such file or directory
gcc: No input files specified
*** Error code 1

Heads up, I'm in the middle of fixing this for the rest of Apache too.

Ryan

On Fri, 19 Jan 2001, Greg Stein wrote:

> What was the symptom that this is fixing? The net result of this change
> seems to be "don't make local-depend in the top-level dir." What problem did
> that cause?
> 
> Cheers,
> -g


_______________________________________________________________________________
Ryan Bloom                        	rbb@apache.org
406 29th St.
San Francisco, CA 94131
-------------------------------------------------------------------------------



Re: cvs commit: apr/helpers rules.mk.in

Posted by Greg Stein <gs...@lyra.org>.
What was the symptom that this is fixing? The net result of this change
seems to be "don't make local-depend in the top-level dir." What problem did
that cause?

Cheers,
-g

On Fri, Jan 19, 2001 at 08:44:46PM -0000, rbb@apache.org wrote:
> rbb         01/01/19 12:44:46
> 
>   Modified:    .        CHANGES
>                helpers  rules.mk.in
>   Log:
>   Fix make depend.
>   
>   Revision  Changes    Path
>   1.43      +2 -0      apr/CHANGES
>   
>   Index: CHANGES
>   ===================================================================
>   RCS file: /home/cvs/apr/CHANGES,v
>   retrieving revision 1.42
>   retrieving revision 1.43
>   diff -u -r1.42 -r1.43
>   --- CHANGES	2001/01/19 03:13:00	1.42
>   +++ CHANGES	2001/01/19 20:44:45	1.43
>   @@ -1,5 +1,7 @@
>    Changes with APR b1
>    
>   +  *) Fix make depend.  [Ryan Bloom]
>   +
>      *) All dso implementations now register a cleanup to unload the DSO
>         when it is loaded.  If the pool is removed, we really do need to
>         remove the DSO.  In the past, different platforms behaved differently
>   
>   
>   
>   1.2       +3 -1      apr/helpers/rules.mk.in
>   
>   Index: rules.mk.in
>   ===================================================================
>   RCS file: /home/cvs/apr/helpers/rules.mk.in,v
>   retrieving revision 1.1
>   retrieving revision 1.2
>   diff -u -r1.1 -r1.2
>   --- rules.mk.in	2001/01/09 11:05:50	1.1
>   +++ rules.mk.in	2001/01/19 20:44:46	1.2
>   @@ -118,7 +118,9 @@
>    	    made_local=n/a; \
>    	fi; \
>    	if test -z "$$made_local"; then \
>   -	    $(MAKE) "local-$$otarget" || exit 1; \
>   +	    if test "$$otarget" != "depend" || test `pwd` != "$(top_builddir)"; then \
>   +	        $(MAKE) "local-$$otarget" || exit 1; \
>   +	    fi; \
>    	fi
>    
>    local-clean: x-local-clean
>   
>   
>   

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