summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2011-03-26 07:06:18 +0000
committerGuenter Knauf <fuankg@apache.org>2011-03-26 07:06:18 +0000
commitf59b2a8ebf9b3b7910f203bb0e8698edaf9bf100 (patch)
tree92f9d0f8150ea912b237f137013ec5a19ed803c3
parent36d465ce32a7d36b4d27e0b48fc7c4b6ec723778 (diff)
downloadapr-f59b2a8ebf9b3b7910f203bb0e8698edaf9bf100.tar.gz
Fixed process.h detection with configure builds.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.3.x@1085660 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--configure.in1
-rw-r--r--include/apr.h.in5
2 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 76d1bb5fd..b8193e019 100644
--- a/configure.in
+++ b/configure.in
@@ -1343,6 +1343,7 @@ AC_SUBST(timeh)
AC_SUBST(unistdh)
AC_SUBST(signalh)
AC_SUBST(sys_waith)
+AC_SUBST(processh)
AC_SUBST(pthreadh)
AC_SUBST(semaphoreh)
AC_SUBST(windowsh)
diff --git a/include/apr.h.in b/include/apr.h.in
index 9f1fb6f99..c77429ce6 100644
--- a/include/apr.h.in
+++ b/include/apr.h.in
@@ -63,10 +63,10 @@
#define __attribute__(__x)
#endif
#define APR_INLINE
-#define APR_HAS_INLINE 0
+#define APR_HAS_INLINE 0
#else
#define APR_INLINE __inline__
-#define APR_HAS_INLINE 1
+#define APR_HAS_INLINE 1
#endif
#define APR_HAVE_ARPA_INET_H @arpa_ineth@
@@ -83,6 +83,7 @@
#define APR_HAVE_NETINET_SCTP_H @netinet_sctph@
#define APR_HAVE_NETINET_SCTP_UIO_H @netinet_sctp_uioh@
#define APR_HAVE_NETINET_TCP_H @netinet_tcph@
+#define APR_HAVE_PROCESS_H @processh@
#define APR_HAVE_PTHREAD_H @pthreadh@
#define APR_HAVE_SEMAPHORE_H @semaphoreh@
#define APR_HAVE_SIGNAL_H @signalh@