You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Greg Ames <gr...@raleigh.ibm.com> on 2000/06/23 00:19:45 UTC

[PATCH] fix OS/390 build

Apache 2.0 quit building on OS/390 because the APR_CHECK_PTHREAD_xxx autoconf tests aren't invoked due to a typo.  This takes care of it:

Index: lib/apr/configure.in
===================================================================
RCS file: /cvs/apache/apache-2.0/src/lib/apr/configure.in,v
retrieving revision 1.114
diff -u -d -b -w -r1.114 configure.in
--- configure.in    2000/06/20 23:51:05 1.114
+++ configure.in    2000/06/22 22:07:54
@@ -459,7 +459,7 @@
     fi
 fi

-if test "$pthreads" = "1"; then
+if test "$pthreadh" = "1"; then
     APR_CHECK_PTHREAD_GETSPECIFIC_TWO_ARGS
     APR_CHECK_PTHREAD_ATTR_GETDETACHSTATE_ONE_ARG
 fi

Greg Ames


Re: [PATCH] fix OS/390 build

Posted by rb...@covalent.net.
I'll commit this in a few minutes.  Looks good obviously.  :-)

Ryan

On Thu, 22 Jun 2000, Greg Ames wrote:

> Apache 2.0 quit building on OS/390 because the APR_CHECK_PTHREAD_xxx autoconf tests aren't invoked due to a typo.  This takes care of it:
> 
> Index: lib/apr/configure.in
> ===================================================================
> RCS file: /cvs/apache/apache-2.0/src/lib/apr/configure.in,v
> retrieving revision 1.114
> diff -u -d -b -w -r1.114 configure.in
> --- configure.in    2000/06/20 23:51:05 1.114
> +++ configure.in    2000/06/22 22:07:54
> @@ -459,7 +459,7 @@
>      fi
>  fi
> 
> -if test "$pthreads" = "1"; then
> +if test "$pthreadh" = "1"; then
>      APR_CHECK_PTHREAD_GETSPECIFIC_TWO_ARGS
>      APR_CHECK_PTHREAD_ATTR_GETDETACHSTATE_ONE_ARG
>  fi
> 
> Greg Ames
> 


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