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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
--- configure.orig Sun Dec 8 22:34:24 2002
+++ configure Fri Mar 2 22:30:45 2007
@@ -251,6 +251,7 @@
# Initializations.
#
ac_default_prefix=/usr/local
+
ac_config_libobj_dir=.
cross_compiling=no
subdirs=
@@ -648,6 +649,21 @@
esac
done
+#################################################################
+## Andy Pavlo
+## For some reason it wouldn't install in the right
+## dir if we gave it a prefix
+## I hope this fixes it
+#################################################################
+if test $prefix != "NONE"; then
+ ac_default_prefix=$prefix
+else
+ ac_default_prefix=$ac_default_prefix
+fi
+#################################################################
+## END FIX
+#################################################################
+
if test -n "$ac_prev"; then
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
{ echo "$as_me: error: missing argument to $ac_option" >&2
@@ -859,6 +875,7 @@
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-xml-prefix=PFX Prefix where GNOME XML library is installed
+ --with-db-name=NAME set the library name of Berkeley DB
--with-db3-inc=DIR Set the include directory of Berkeley DB3
--with-db3-lib=DIR Set the library directory of Berkeley DB3
--with-gtk Use GTK interface (incl. splash screen, default is
@@ -2827,6 +2844,14 @@
enable_xmltest=yes
fi;
+# Check whether --with-db_name or --without-db_name was given.
+if test "${with_db_name+set}" = set; then
+ withval="$with_db_name"
+ test x$withval != x && with_db_name="$withval"
+else
+ with_db_name='db'
+fi;
+
# Check whether --with-db3-inc or --without-db3-inc was given.
if test "${with_db3_inc+set}" = set; then
@@ -4353,13 +4378,13 @@
fi
-echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5
-echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6
+echo "$as_me:$LINENO: checking for pthread_create in -pthread" >&5
+echo $ECHO_N "checking for pthread_create in -pthread... $ECHO_C" >&6
if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-lpthread $LIBS"
+LIBS="-pthread $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line $LINENO "configure"
/* confdefs.h. */
@@ -4412,7 +4437,7 @@
#define HAVE_LIBPTHREAD 1
_ACEOF
- LIBS="-lpthread $LIBS"
+ LIBS="-pthread $LIBS"
fi
@@ -4435,7 +4460,11 @@
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-ldb3 $LIBS"
+LIBS="-l$with_db_name $LIBS"
+__db_create="db_create"
+if [ "$with_db_name" = "db-4.2" ]; then
+ __db_create="db_create_4002"
+fi
cat >conftest.$ac_ext <<_ACEOF
#line $LINENO "configure"
/* confdefs.h. */
@@ -4450,11 +4479,11 @@
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
-char db_create ();
+char $__db_create ();
int
main ()
{
-db_create ();
+$__db_create ();
;
return 0;
}
@@ -4488,7 +4517,7 @@
#define HAVE_LIBDB3 1
_ACEOF
- LIBS="-ldb3 $LIBS"
+ LIBS="-l$with_db_name $LIBS"
else
nodb=yes
@@ -4590,7 +4619,7 @@
{
int major=0, minor=0, patch=0;
db_version(&major, &minor, &patch);
- if ( major==3 && ((minor==2 && patch>=9) || minor>2) )
+ if ( major > 3 || (major==3 && ((minor==2 && patch>=9) || minor>2)) )
exit(0);
else
exit(1);
|