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