blob: 01adf4e8d169a2fb91eb9edce604d376117c4c83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
--- configure.orig Sat Mar 25 05:00:55 2006
+++ configure Thu May 25 12:50:00 2006
@@ -2934,12 +2934,15 @@
APR_VER_REGEX="0\.9\.[5-9]"
+APR_VER_REGEX_AP20="0\.9\.1[2-9]"
APR_VER_REGEX_TOO="1\."
APU_VER_REGEX="0\.9\.[5-9]"
+APU_VER_REGEX_AP20="0\.9\.1[2-9]"
APU_VER_REGEX_TOO="1\."
APR_WANTED_REGEX="$APR_VER_REGEX"
+ APR_WANTED_REGEX_AP20="$APR_VER_REGEX_AP20"
APR_WANTED_REGEX_TOO="$APR_VER_REGEX_TOO"
{ echo "$as_me:$LINENO: Apache Portable Runtime (APR) library configuration" >&5
@@ -3215,6 +3218,7 @@
echo "${ECHO_T}$apr_version" >&6
if test `expr $apr_version : $APR_WANTED_REGEX` -eq 0 \
+ -a `expr $apr_version : $APR_WANTED_REGEX_AP20` -eq 0 \
-a `expr $apr_version : $APR_WANTED_REGEX_TOO` -eq 0; then
echo "wanted regex is $APR_WANTED_REGEX or $APR_WANTED_REGEX_TOO"
{ { echo "$as_me:$LINENO: error: invalid apr version found" >&5
@@ -3287,6 +3291,7 @@
APRUTIL_WANTED_REGEX="$APU_VER_REGEX"
+ APRUTIL_WANTED_REGEX_AP20="$APU_VER_REGEX_AP20"
APRUTIL_WANTED_REGEX_TOO="$APU_VER_REGEX_TOO"
{ echo "$as_me:$LINENO: Apache Portable Runtime Utility (APRUTIL) library configuration" >&5
@@ -3559,6 +3564,7 @@
echo "${ECHO_T}$apu_version" >&6
if test `expr $apu_version : $APRUTIL_WANTED_REGEX` -eq 0 \
+ -a `expr $apr_version : $APRUTIL_WANTED_REGEX_AP20` -eq 0 \
-a `expr $apu_version : $APRUTIL_WANTED_REGEX_TOO` -eq 0; then
echo "wanted regex is $APRUTIL_WANTED_REGEX or $APRUTIL_WANTED_REGEX_TOO"
{ { echo "$as_me:$LINENO: error: invalid apr-util version found" >&5
@@ -19784,10 +19790,10 @@
# This can be used to rebuild libtool when needed
-LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
+LIBTOOL_DEPS=" /usr/local/share/libtool/ltmain.sh"
# Always use our own libtool.
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+LIBTOOL='$(SHELL) /usr/local/bin/libtool'
# Prevent multiple expansion
@@ -19933,7 +19939,7 @@
if test "$NEON_VERSION" = "$svn_allowed_neon" -o $svn_allowed_neon = "any"; then
svn_allowed_neon_on_system="yes"
SVN_NEON_INCLUDES=`$neon_config --cflags | sed -e 's/-D[^ ]*//g'`
- NEON_LIBS=`$neon_config --la-file`
+ NEON_LIBS=`$neon_config --libs`
CFLAGS="$CFLAGS `$neon_config --cflags | sed -e 's/-I[^ ]*//g'`"
svn_lib_neon="yes"
break
|