61bab4ce3d72f8d7a6c99535f9b7526d7e3065e6
[rsync/rsync.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(byteorder.h)
3 AC_CONFIG_HEADER(config.h)
4
5 # compile with optimisation and without debugging by default
6 CFLAGS=${CFLAGS-"-O"}
7
8 AC_CANONICAL_SYSTEM
9 AC_VALIDATE_CACHE_SYSTEM_TYPE
10
11 dnl Checks for programs.
12 AC_PROG_CC
13 AC_PROG_INSTALL
14 AC_SUBST(SHELL)
15
16 AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
17 AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH)
18
19 AC_C_BIGENDIAN
20 AC_HEADER_DIRENT
21 AC_HEADER_TIME
22 AC_HEADER_SYS_WAIT
23 AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
24 AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
25 AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
26 AC_CHECK_HEADERS(glob.h)
27
28 AC_CHECK_SIZEOF(int)
29 AC_CHECK_SIZEOF(long)
30 AC_CHECK_SIZEOF(short)
31
32 AC_C_INLINE
33
34 AC_TYPE_SIGNAL
35 AC_TYPE_UID_T
36 AC_TYPE_MODE_T
37 AC_TYPE_OFF_T
38 AC_TYPE_SIZE_T
39 AC_TYPE_PID_T
40 AC_TYPE_GETGROUPS
41 AC_STRUCT_ST_RDEV
42 AC_CHECK_TYPE(ino_t,unsigned)
43
44 AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
45     AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
46         rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
47 if test x"$rsync_cv_errno" = x"yes"; then
48    AC_DEFINE(HAVE_ERRNO_DECL)
49 fi
50
51 # The following test taken from the cvs sources
52 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
53 # These need checks to be before checks for any other functions that
54 #    might be in the same libraries.
55 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
56 # libsocket.so which has a bad implementation of gethostbyname (it
57 # only looks in /etc/hosts), so we only look for -lsocket if we need
58 # it.
59 AC_CHECK_FUNCS(connect)
60 if test x"$ac_cv_func_connect" = x"no"; then
61     case "$LIBS" in
62     *-lnsl*) ;;
63     *) AC_CHECK_LIB(nsl_s, printf) ;;
64     esac
65     case "$LIBS" in
66     *-lnsl*) ;;
67     *) AC_CHECK_LIB(nsl, printf) ;;
68     esac
69     case "$LIBS" in
70     *-lsocket*) ;;
71     *) AC_CHECK_LIB(socket, connect) ;;
72     esac
73     case "$LIBS" in
74     *-linet*) ;;
75     *) AC_CHECK_LIB(inet, connect) ;;
76     esac
77     dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
78     dnl has been cached.
79     if test x"$ac_cv_lib_socket_connect" = x"yes" || 
80        test x"$ac_cv_lib_inet_connect" = x"yes"; then
81         # ac_cv_func_connect=yes
82         # don't!  it would cause AC_CHECK_FUNC to succeed next time configure is run
83         AC_DEFINE(HAVE_CONNECT)
84     fi
85 fi
86
87
88 # if we can't find strcasecmp, look in -lresolv (for Unixware at least)
89 #
90 AC_CHECK_FUNCS(strcasecmp)
91 if test x"$ac_cv_func_strcasecmp" = x"no"; then
92     AC_CHECK_LIB(resolv, strcasecmp)
93 fi
94
95 AC_FUNC_MEMCMP
96 AC_FUNC_UTIME_NULL
97 AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod)
98 AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
99 AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf setsid glob strpbrk)
100 AC_CHECK_FUNCS(strlcat strlcpy inet_aton)
101
102 AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
103 AC_TRY_RUN([#include <sys/types.h>
104             #include <sys/socket.h>
105             main() {
106                 int fd[2];
107                 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
108             }],
109 rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
110 if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
111     AC_DEFINE(HAVE_SOCKETPAIR)
112 fi
113
114 AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[
115 AC_TRY_RUN([#include <fnmatch.h>
116 main() { exit((fnmatch("*.o", "x.o", FNM_PATHNAME) == 0 &&
117                fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME) != 0) ? 0: 1); }],
118 rsync_cv_HAVE_FNMATCH=yes,rsync_cv_HAVE_FNMATCH=no,rsync_cv_HAVE_FNMATCH=cross)])
119 if test x"$rsync_cv_HAVE_FNMATCH" = x"yes"; then
120     AC_DEFINE(HAVE_FNMATCH)
121 fi
122
123 # sometimes getopt_long cannot parse same arguments twice
124 # e.g. on certain versions of CygWin32
125 AC_CACHE_CHECK([for working getopt_long],rsync_cv_HAVE_GETOPT_LONG,[
126 AC_TRY_RUN([#include <getopt.h>
127 main() {
128     int i, x = 0; char *argv[] = { "x", "--xx" };
129     struct option o[] = {{"xx", 0, 0, 1}, {0,0,0,0}};
130     getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0; optind = 0;
131     getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0;
132     exit(x == 2 ? 0 : 1);
133 }], rsync_cv_HAVE_GETOPT_LONG=yes,rsync_cv_HAVE_GETOPT_LONG=no,
134     rsync_cv_HAVE_GETOPT_LONG=cross)])
135 if test x"$rsync_cv_HAVE_GETOPT_LONG" = x"yes"; then
136     AC_DEFINE(HAVE_GETOPT_LONG)
137 fi
138
139 AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
140 AC_TRY_RUN([#include <stdio.h>
141 main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
142 rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
143 if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
144     AC_DEFINE(HAVE_LONGLONG)
145 fi
146
147 AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
148 AC_TRY_RUN([#include <stdio.h>
149 #include <sys/stat.h>
150 main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
151 rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
152 if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
153     AC_DEFINE(HAVE_OFF64_T)
154 fi
155
156 AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
157 AC_TRY_RUN([#include <stdio.h>
158 #include <sys/types.h>
159 #include <sys/stat.h>
160 main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
161 rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
162 if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
163     AC_DEFINE(HAVE_SHORT_INO_T)
164 fi
165
166 AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
167 AC_TRY_RUN([#include <stdio.h>
168 main() { char c; c=250; exit((c > 0)?0:1); }],
169 rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
170 if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
171     AC_DEFINE(HAVE_UNSIGNED_CHAR)
172 fi
173
174 AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
175 AC_TRY_RUN([#include <sys/types.h>
176 #include <dirent.h>
177 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
178 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
179 di->d_name[0] == 0) exit(0); exit(1);} ],
180 rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
181 if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
182     AC_DEFINE(HAVE_BROKEN_READDIR)
183 fi
184
185 AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
186 AC_TRY_COMPILE([#include <sys/types.h>
187 #include <utime.h>],
188 [struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
189 rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
190 if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
191     AC_DEFINE(HAVE_UTIMBUF)
192 fi
193
194 AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
195 AC_TRY_RUN([
196 #include <sys/time.h>
197 #include <unistd.h>
198 main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
199            rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
200 if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
201     AC_DEFINE(HAVE_GETTIMEOFDAY_TZ)
202 fi
203
204
205 AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
206 AC_TRY_RUN([
207 #include <stdio.h>
208 #include <sys/types.h>
209 #include <netinet/in.h>
210 #include <arpa/inet.h>
211 main() { struct in_addr ip; ip.s_addr = 0x12345678;
212 if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
213     strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); } 
214 exit(1);}],
215            rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=cross)])
216 if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
217     AC_DEFINE(REPLACE_INET_NTOA)
218 fi
219
220 #
221 # The following test was mostly taken from the tcl/tk plus patches
222 #
223 AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
224 rm -rf conftest*
225 cat > conftest.$ac_ext <<EOF
226 int main() { return 0; }
227 EOF
228 ${CC-cc} -c -o conftest..o conftest.$ac_ext
229 if test -f conftest..o; then
230     rsync_cv_DASHC_WORKS_WITH_DASHO=yes
231 else
232     rsync_cv_DASHC_WORKS_WITH_DASHO=no
233 fi
234 rm -rf conftest*
235 ])
236 if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
237     OBJ_SAVE="#"
238     OBJ_RESTORE="#"
239     CC_SHOBJ_FLAG='-o $@'
240 else
241     OBJ_SAVE='  @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
242     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'
243     CC_SHOBJ_FLAG=""
244 fi
245
246 AC_SUBST(OBJ_SAVE)
247 AC_SUBST(OBJ_RESTORE)
248 AC_SUBST(CC_SHOBJ_FLAG)
249
250
251 AC_OUTPUT(Makefile lib/dummy zlib/dummy)