blob: 60c4f8ab71d714105cb5876e8df63bb35723a35d (
plain) (
blame)
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
|
--- configure.ac.orig Wed Nov 20 00:54:24 2002
+++ configure.ac Thu Feb 6 17:47:12 2003
@@ -300,6 +300,17 @@
# These are needed by libjnlib - fixme: we should have a macros for them
AC_CHECK_FUNCS(memicmp stpcpy strlwr strtoul memmove stricmp strtol)
+AC_CHECK_FUNCS(getrusage setrlimit stat setlocale)
+AC_CHECK_FUNCS(flockfile funlockfile)
+
+AC_CHECK_FUNCS(sigaction sigprocmask)
+
+AC_REPLACE_FUNCS(vasprintf)
+AC_REPLACE_FUNCS(fopencookie)
+# FIXME: Print a warning when fopencookie is not available.
+AC_REPLACE_FUNCS(mkdtemp)
+AC_REPLACE_FUNCS(fseeko ftello)
+AC_REPLACE_FUNCS(isascii)
AC_CHECK_FUNCS(asprintf,,[
AC_MSG_ERROR([[
@@ -307,13 +318,6 @@
*** asprintf(3) is needed to build this package.
*** We will provide an replacement in a later release.
***]])])
-AC_CHECK_FUNCS(fopencookie,,[
- AC_MSG_ERROR([[
-***
-*** fopencookie(3) is needed to build this package.
-*** We will provide an replacement in a later release.
-***]])])
-
# We use jnlib, so tell other modules about it
AC_DEFINE(HAVE_JNLIB_LOGGING, 1,
@@ -324,6 +328,7 @@
Makefile
jnlib/Makefile
assuan/Makefile
+common/Makefile
src/Makefile
doc/Makefile
tests/Makefile
|