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 Thu Jan 10 12:57:53 2002
+++ configure Thu Jan 10 12:59:14 2002
@@ -8560,7 +8560,7 @@
#line 8561 "configure"
#include "confdefs.h"
#include <stdlib.h>
-#include <iconv.h>
+#include <giconv.h>
int main() {
iconv_t cd = iconv_open("","");
iconv(cd,NULL,NULL,NULL,NULL);
@@ -8577,12 +8577,12 @@
rm -f conftest*
if test "$am_cv_func_iconv" != yes; then
am_save_LIBS="$LIBS"
- LIBS="$LIBS -liconv"
+ LIBS="$LIBS -lgiconv"
cat > conftest.$ac_ext <<EOF
#line 8583 "configure"
#include "confdefs.h"
#include <stdlib.h>
-#include <iconv.h>
+#include <giconv.h>
int main() {
iconv_t cd = iconv_open("","");
iconv(cd,NULL,NULL,NULL,NULL);
@@ -8620,7 +8620,7 @@
#include "confdefs.h"
#include <stdlib.h>
-#include <iconv.h>
+#include <giconv.h>
extern
#ifdef __cplusplus
"C"
@@ -8658,7 +8658,7 @@
fi
LIBICONV=
if test "$am_cv_lib_iconv" = yes; then
- LIBICONV="-liconv"
+ LIBICONV="-lgiconv"
fi
@@ -9608,7 +9608,7 @@
withval="$with_help_prefix"
GNC_HELPDIR="$with_help_prefix/gnome/help/gnucash"
else
- GNC_HELPDIR="\${datadir}/gnome/help/gnucash"
+ GNC_HELPDIR="\${datadir}/help/gnucash"
fi
@@ -10128,7 +10128,7 @@
if test "$prefer_db1" = "yes"; then
- for ac_hdr in db_185.h db1/db.h
+ for ac_hdr in db_185.h db.h db1/db.h
do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
@@ -10168,7 +10168,7 @@
fi
done
- if test "$ac_cv_header_db_185_h$ac_cv_header_db1_db_h" = nono; then
+ if test "$ac_cv_header_db_185_h$ac_cv_header_db_h" = nono; then
{ echo "configure: error: Berkeley db library required for GnuCash" 1>&2; exit 1; }
fi
cat >> confdefs.h <<\EOF
|