fixed cacheing of some values (using code from Samba)
[rsync/rsync.git] / configure.in
CommitLineData
c627d613
AT
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(byteorder.h)
3AC_CONFIG_HEADER(config.h)
4
8de330a3
AT
5AC_CANONICAL_SYSTEM
6AC_VALIDATE_CACHE_SYSTEM_TYPE
7
c627d613
AT
8dnl Checks for programs.
9AC_PROG_CC
10AC_PROG_INSTALL
11AC_SUBST(SHELL)
12
7b8356d0
AT
13AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
14AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH)
15
c627d613 16AC_HEADER_DIRENT
c627d613
AT
17AC_HEADER_TIME
18AC_HEADER_SYS_WAIT
8bf73749 19AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
94481d91 20AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
fdd71e17 21AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
932be9aa 22AC_CHECK_HEADERS(glob.h)
c627d613
AT
23
24AC_CHECK_SIZEOF(int)
25AC_CHECK_SIZEOF(long)
26AC_CHECK_SIZEOF(short)
27
28AC_C_INLINE
29
30AC_TYPE_SIGNAL
31AC_TYPE_UID_T
32AC_TYPE_MODE_T
33AC_TYPE_OFF_T
34AC_TYPE_SIZE_T
35AC_TYPE_PID_T
36AC_STRUCT_ST_RDEV
dc5ddbcc 37AC_CHECK_TYPE(ino_t,unsigned)
c627d613 38
7597e1a9
AT
39AC_CACHE_CHECK([for errno in errno.h],samba_cv_errno, [
40 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
41 samba_cv_errno=yes,samba_cv_have_errno_decl=no)])
42if test x"$samba_cv_errno" = x"yes"; then
43 AC_DEFINE(HAVE_ERRNO_DECL)
44fi
c627d613
AT
45
46AC_FUNC_MEMCMP
c627d613 47AC_FUNC_UTIME_NULL
bb0f7089 48AC_CHECK_FUNCS(mmap munmap waitpid getcwd strdup strerror chown chmod mknod)
e0414f42 49AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
f8be5ef4 50AC_CHECK_FUNCS(memmove getopt_long lchown vsnprintf snprintf setsid glob strpbrk)
c627d613 51
e260d7fb 52echo $ac_n "checking for working fnmatch... $ac_c"
c627d613
AT
53AC_TRY_RUN([#include <fnmatch.h>
54main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }],
55echo yes;AC_DEFINE(HAVE_FNMATCH),
56echo no)
57
7597e1a9 58AC_CACHE_CHECK([for long long],samba_cv_have_longlong,[
0d0e2e93 59AC_TRY_RUN([#include <stdio.h>
efb2f6bf 60main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
7597e1a9
AT
61samba_cv_have_longlong=yes,samba_cv_have_longlong=no,samba_cv_have_longlong=cross)])
62if test x"$samba_cv_have_longlong" = x"yes"; then
63 AC_DEFINE(HAVE_LONGLONG)
64fi
0d0e2e93 65
7597e1a9 66AC_CACHE_CHECK([for off64_t],samba_cv_HAVE_OFF64_T,[
bcacc18b
AT
67AC_TRY_RUN([#include <stdio.h>
68#include <sys/stat.h>
7597e1a9
AT
69main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
70samba_cv_HAVE_OFF64_T=yes,samba_cv_HAVE_OFF64_T=no,samba_cv_HAVE_OFF64_T=cross)])
71if test x"$samba_cv_HAVE_OFF64_T" = x"yes"; then
72 AC_DEFINE(HAVE_OFF64_T)
73fi
debb4505 74
c29ee43d
AT
75echo $ac_n "checking for short ino_t ... $ac_c"
76AC_TRY_RUN([#include <stdio.h>
77#include <sys/types.h>
78#include <sys/stat.h>
79main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
80echo yes;AC_DEFINE(HAVE_SHORT_INO_T),
81echo no)
82
7597e1a9 83AC_CACHE_CHECK([for unsigned char],samba_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
84AC_TRY_RUN([#include <stdio.h>
85main() { char c; c=250; exit((c > 0)?0:1); }],
7597e1a9
AT
86samba_cv_HAVE_UNSIGNED_CHAR=yes,samba_cv_HAVE_UNSIGNED_CHAR=no,samba_cv_HAVE_UNSIGNED_CHAR=cross)])
87if test x"$samba_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
88 AC_DEFINE(HAVE_UNSIGNED_CHAR)
89fi
bcacc18b 90
7597e1a9 91AC_CACHE_CHECK([for broken readdir],samba_cv_HAVE_BROKEN_READDIR,[
59503278
AT
92AC_TRY_RUN([#include <sys/types.h>
93#include <dirent.h>
94main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
95if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9
AT
96di->d_name[0] == 0) exit(0); exit(1);} ],
97samba_cv_HAVE_BROKEN_READDIR=yes,samba_cv_HAVE_BROKEN_READDIR=no,samba_cv_HAVE_BROKEN_READDIR=cross)])
98if test x"$samba_cv_HAVE_BROKEN_READDIR" = x"yes"; then
99 AC_DEFINE(HAVE_BROKEN_READDIR)
100fi
1e9f155a 101
7597e1a9 102AC_CACHE_CHECK([for utimbuf],samba_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
103AC_TRY_COMPILE([#include <sys/types.h>
104#include <utime.h>],
7597e1a9
AT
105[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
106samba_cv_HAVE_UTIMBUF=yes,samba_cv_HAVE_UTIMBUF=no,samba_cv_HAVE_UTIMBUF=cross)])
107if test x"$samba_cv_HAVE_UTIMBUF" = x"yes"; then
108 AC_DEFINE(HAVE_UTIMBUF)
109fi
d6e6ecbd 110
8ef4ffd6 111# The following test taken from the cvs sources
7d29d4ba
AT
112# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
113# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
114# libsocket.so which has a bad implementation of gethostbyname (it
115# only looks in /etc/hosts), so we only look for -lsocket if we need
116# it.
7597e1a9
AT
117AC_CHECK_FUNCS(connect)
118if test x"$ac_cv_func_connect" = x"no"; then
119 case "$LIBS" in
120 *-lnsl*) ;;
121 *) AC_CHECK_LIB(nsl_s, printf) ;;
122 esac
123 case "$LIBS" in
124 *-lnsl*) ;;
125 *) AC_CHECK_LIB(nsl, printf) ;;
126 esac
127 case "$LIBS" in
128 *-lsocket*) ;;
129 *) AC_CHECK_LIB(socket, connect) ;;
130 esac
131 case "$LIBS" in
132 *-linet*) ;;
133 *) AC_CHECK_LIB(inet, connect) ;;
134 esac
135 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
136 dnl has been cached.
137 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
138 test x"$ac_cv_lib_inet_connect" = x"yes"; then
139 # ac_cv_func_connect=yes
140 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
141 AC_DEFINE(HAVE_CONNECT)
142 fi
143fi
7d29d4ba 144
692da0b5
DD
145#
146# The following test was mostly taken from the tcl/tk plus patches
147#
148echo $ac_n "checking whether -c -o works ... $ac_c"
149rm -rf conftest*
150cat > conftest.$ac_ext <<EOF
151int main() { return 0; }
152EOF
153${CC-cc} -c -o conftest..o conftest.$ac_ext
154if test -f conftest..o; then
155 OBJ_SAVE="#"
156 OBJ_RESTORE="#"
157 CC_SHOBJ_FLAG='-o $@'
158 echo yes
159else
160 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
161 OBJ_RESTORE=' @b=`basename $@ .o`;if test "$$b.o" != "$@"; then mv $$b.o $@; if test -f $$b.o.sav; then mv $$b.o.sav $$b.o; fi; fi'
162 CC_SHOBJ_FLAG=""
163 echo no
164fi
165rm -rf conftest*
166AC_SUBST(OBJ_SAVE)
167AC_SUBST(OBJ_RESTORE)
168AC_SUBST(CC_SHOBJ_FLAG)
169
7d29d4ba 170
db199cfa 171AC_OUTPUT(Makefile lib/dummy zlib/dummy)