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