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
65
66
67
68
69
70
71
72
73
74
|
$FreeBSD$
--- configure.orig Fri Dec 14 14:08:27 2001
+++ configure Fri Dec 14 14:17:45 2001
@@ -9253,7 +9253,7 @@
CPPFLAGS_save="$CPPFLAGS"
CPPFLAGS="$DB3_CFLAGS $CPPFLAGS"
-for ac_hdr in db.h db3/db.h
+for ac_hdr in db3/db.h
do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
@@ -9327,7 +9327,7 @@
echo "configure: failed program was:" >&5
cat conftest.$ac_ext >&5
rm -rf conftest*
- { echo "configure: error: Found db.h is not version $evolution_db_version" 1>&2; exit 1; }
+# { echo "configure: error: Found db.h is not version $evolution_db_version" 1>&2; exit 1; }
fi
rm -f conftest*
@@ -9347,7 +9347,7 @@
ac_cv_db3_ldadd=""
for name in db db3 db-3.1; do
- LIBS="$LIBS_save $with_db3_libs/lib${name}.a"
+ LIBS="$LIBS_save $with_db3_libs/lib${name}.so"
cat > conftest.$ac_ext <<EOF
#line 9353 "configure"
#include "confdefs.h"
@@ -9368,7 +9368,7 @@
if { (eval echo configure:9369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
- ac_cv_db3_ldadd="$with_db3_libs/lib${name}.a"
+ ac_cv_db3_ldadd="$with_db3_libs/lib${name}.so"
break
else
@@ -9438,7 +9438,7 @@
echo "$ac_t""$ac_cv_db3_lib_version_match" 1>&6
if test "$ac_cv_db3_lib_version_match" = no; then
- { echo "configure: error: db3 headers and library do not match... multiple copies installed?" 1>&2; exit 1; }
+# { echo "configure: error: db3 headers and library do not match... multiple copies installed?" 1>&2; exit 1; }
fi
CPPFLAGS="$CPPFLAGS_save"
@@ -11059,7 +11059,7 @@
size_t utf8_real_len = strlen (utf8);
char *pstring;
- if (convert_ToPilotChar ("UTF8", utf8, utf8_real_len, &pstring) == -1)
+ if (convert_ToPilotChar ("UTF-8", utf8, utf8_real_len, &pstring) == -1)
exit (1);
exit (0);
@@ -12680,10 +12680,10 @@
*) # Relative path.
ac_sub_cache_file="$ac_dots$cache_file" ;;
esac
- case "$ac_given_INSTALL" in
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- esac
+# case "$ac_given_INSTALL" in
+# [/$]*) INSTALL="$ac_given_INSTALL" ;;
+# *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
+# esac
echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
# The eval makes quoting arguments work.
|