switch to rk_strerror_r
[heimdal.git] / cf / roken-frag.m4
blob0fa9fe8ba66e1ae42a6b26850616007fae7dac2b
1 dnl $Id$
2 dnl
3 dnl some code to get roken working
4 dnl
5 dnl rk_ROKEN(subdir)
6 dnl
7 AC_DEFUN([rk_ROKEN], [
9 AC_REQUIRE([rk_CONFIG_HEADER])
11 DIR_roken=roken
12 LIB_roken='$(top_builddir)/$1/libroken.la'
13 INCLUDES_roken='-I$(top_builddir)/$1 -I$(top_srcdir)/$1'
15 dnl Checks for programs
16 AC_REQUIRE([AC_PROG_CC])
17 AC_REQUIRE([AC_PROG_AWK])
18 AC_REQUIRE([AC_OBJEXT])
19 AC_REQUIRE([AC_EXEEXT])
20 AC_REQUIRE([AC_PROG_LIBTOOL])
22 AC_REQUIRE([AC_MIPS_ABI])
24 dnl C characteristics
26 AC_REQUIRE([AC_C___ATTRIBUTE__])
27 AC_REQUIRE([AC_C_INLINE])
28 AC_REQUIRE([AC_C_CONST])
29 rk_WFLAGS(-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs)
31 AC_REQUIRE([rk_DB])
33 dnl C types
35 AC_REQUIRE([AC_TYPE_SIZE_T])
36 AC_HAVE_TYPE([ssize_t],[#include <unistd.h>])
37 AC_REQUIRE([AC_TYPE_PID_T])
38 AC_REQUIRE([AC_TYPE_UID_T])
39 AC_HAVE_TYPE([long long])
41 AC_REQUIRE([rk_RETSIGTYPE])
43 dnl Checks for header files.
44 AC_REQUIRE([AC_HEADER_STDC])
45 AC_REQUIRE([AC_HEADER_TIME])
47 AC_CHECK_HEADERS([\
48         arpa/inet.h                             \
49         config.h                                \
50         crypt.h                                 \
51         dirent.h                                \
52         errno.h                                 \
53         err.h                                   \
54         fcntl.h                                 \
55         fnmatch.h                               \
56         grp.h                                   \
57         ifaddrs.h                               \
58         netinet/in.h                            \
59         netinet/in6.h                           \
60         netinet/in_systm.h                      \
61         netinet6/in6.h                          \
62         paths.h                                 \
63         poll.h                                  \
64         pwd.h                                   \
65         rpcsvc/ypclnt.h                         \
66         shadow.h                                \
67         stdint.h                                \
68         sys/bswap.h                             \
69         sys/ioctl.h                             \
70         sys/mman.h                              \
71         sys/param.h                             \
72         sys/resource.h                          \
73         sys/sockio.h                            \
74         sys/stat.h                              \
75         sys/time.h                              \
76         sys/tty.h                               \
77         sys/types.h                             \
78         sys/uio.h                               \
79         sys/utsname.h                           \
80         sys/wait.h                              \
81         syslog.h                                \
82         termios.h                               \
83         winsock2.h                              \
84         ws2tcpip.h                              \
85         unistd.h                                \
86         userconf.h                              \
87         usersec.h                               \
88         util.h                                  \
91 AC_HAVE_TYPE([uintptr_t],[#ifdef HAVE_STDINT_H
92 #include <stdint.h>
93 #endif])
95 dnl Sunpro 5.2 has a vis.h which is something different.
96 AC_CHECK_HEADERS(vis.h, , , [
97 #include <vis.h>
98 #ifndef VIS_SP
99 #error invis
100 #endif])
101         
102 AC_CHECK_HEADERS(netdb.h, , , [AC_INCLUDES_DEFAULT
103 #ifdef HAVE_SYS_TYPES_H
104 #include <sys/types.h>
105 #endif
108 AC_CHECK_HEADERS(sys/socket.h, , , [AC_INCLUDES_DEFAULT
109 #ifdef HAVE_SYS_TYPES_H
110 #include <sys/types.h>
111 #endif
114 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
115 #ifdef HAVE_SYS_TYPES_H
116 #include <sys/types.h>
117 #endif
118 #if HAVE_SYS_SOCKET_H
119 #include <sys/socket.h>
120 #endif])
122 AC_CHECK_HEADERS(netinet6/in6_var.h, , , [AC_INCLUDES_DEFAULT
123 #ifdef HAVE_SYS_TYPES_H
124 #include <sys/types.h>
125 #endif
126 #if HAVE_SYS_SOCKET_H
127 #include <sys/socket.h>
128 #endif
129 #ifdef HAVE_NETINET6_IN6_H
130 #include <netinet6/in6.h>
131 #endif
134 AC_CHECK_HEADERS(sys/sysctl.h, , , [AC_INCLUDES_DEFAULT
135 #ifdef HAVE_SYS_PARAM_H
136 #include <sys/param.h>
137 #endif
140 AC_CHECK_HEADERS(sys/proc.h, , , [AC_INCLUDES_DEFAULT
141 #ifdef HAVE_SYS_PARAM_H
142 #include <sys/param.h>
143 #endif
146 AC_REQUIRE([CHECK_NETINET_IP_AND_TCP])
148 AM_CONDITIONAL(have_err_h, test "$ac_cv_header_err_h" = yes)
149 AM_CONDITIONAL(have_ifaddrs_h, test "$ac_cv_header_ifaddrs_h" = yes)
150 AM_CONDITIONAL(have_vis_h, test "$ac_cv_header_vis_h" = yes)
152 dnl Check for functions and libraries
154 AC_FIND_FUNC(socket, socket)
155 AC_FIND_FUNC(gethostbyname, nsl)
156 AC_FIND_FUNC(syslog, syslog)
158 AC_KRB_IPV6
160 AC_FIND_FUNC(gethostbyname2, inet6 ip6)
162 rk_RESOLV
164 AC_BROKEN_SNPRINTF
165 AC_BROKEN_VSNPRINTF
167 AC_BROKEN_GLOB
168 if test "$ac_cv_func_glob_working" != yes; then
169         AC_LIBOBJ(glob)
171 AM_CONDITIONAL(have_glob_h, test "$ac_cv_func_glob_working" = yes)
174 AC_CHECK_FUNCS([                                \
175         asnprintf                               \
176         asprintf                                \
177         atexit                                  \
178         cgetent                                 \
179         getconfattr                             \
180         getprogname                             \
181         getrlimit                               \
182         getspnam                                \
183         initstate                               \
184         issetugid                               \
185         on_exit                                 \
186         poll                                    \
187         random                                  \
188         setprogname                             \
189         setstate                                \
190         strsvis                                 \
191         strsvisx                                \
192         strunvis                                \
193         strvis                                  \
194         strvisx                                 \
195         svis                                    \
196         sysconf                                 \
197         sysctl                                  \
198         uname                                   \
199         unvis                                   \
200         vasnprintf                              \
201         vasprintf                               \
202         vis                                     \
205 if test "$ac_cv_func_cgetent" = no; then
206         AC_LIBOBJ(getcap)
208 AM_CONDITIONAL(have_cgetent, test "$ac_cv_func_cgetent" = yes)
210 AC_REQUIRE([AC_FUNC_GETLOGIN])
212 AC_REQUIRE([AC_FUNC_MMAP])
214 AC_FIND_FUNC_NO_LIBS(getsockopt,,
215 [#ifdef HAVE_SYS_TYPES_H
216 #include <sys/types.h>
217 #endif
218 #ifdef HAVE_SYS_SOCKET_H
219 #include <sys/socket.h>
220 #endif],
221 [0,0,0,0,0])
222 AC_FIND_FUNC_NO_LIBS(setsockopt,,
223 [#ifdef HAVE_SYS_TYPES_H
224 #include <sys/types.h>
225 #endif
226 #ifdef HAVE_SYS_SOCKET_H
227 #include <sys/socket.h>
228 #endif],
229 [0,0,0,0,0])
231 AC_FIND_IF_NOT_BROKEN(hstrerror, resolv,
232 [#ifdef HAVE_NETDB_H
233 #include <netdb.h>
234 #endif],
236 AC_NEED_PROTO([
237 #ifdef HAVE_NETDB_H
238 #include <netdb.h>
239 #endif],
240 hstrerror)
242 AC_FOREACH([rk_func], [asprintf vasprintf asnprintf vasnprintf],
243         [AC_NEED_PROTO([
244         #include <stdio.h>
245         #include <string.h>],
246         rk_func)])
248 AC_FIND_FUNC_NO_LIBS(bswap16,,
249 [#ifdef HAVE_SYS_TYPES_H
250 #include <sys/types.h>
251 #endif
252 #ifdef HAVE_SYS_BSWAP_H
253 #include <sys/bswap.h>
254 #endif],0)
256 AC_FIND_FUNC_NO_LIBS(bswap32,,
257 [#ifdef HAVE_SYS_TYPES_H
258 #include <sys/types.h>
259 #endif
260 #ifdef HAVE_SYS_BSWAP_H
261 #include <sys/bswap.h>
262 #endif],0)
264 AC_FIND_FUNC_NO_LIBS(pidfile,util,
265 [#ifdef HAVE_UTIL_H
266 #include <util.h>
267 #endif],0)
269 AC_FIND_IF_NOT_BROKEN(getaddrinfo,,
270 [#ifdef HAVE_NETDB_H
271 #include <netdb.h>
272 #endif
273 #ifdef HAVE_WS2TCPIP_H
274 #include <ws2tcpip.h>
275 #endif],[0,0,0,0])
277 AC_FIND_IF_NOT_BROKEN(getnameinfo,,
278 [#ifdef HAVE_NETDB_H
279 #include <netdb.h>
280 #endif
281 #ifdef HAVE_WS2TCPIP_H
282 #include <ws2tcpip.h>
283 #endif],[0,0,0,0,0,0,0])
285 AC_FIND_IF_NOT_BROKEN(freeaddrinfo,,
286 [#ifdef HAVE_NETDB_H
287 #include <netdb.h>
288 #endif
289 #ifdef HAVE_WS2TCPIP_H
290 #include <ws2tcpip.h>
291 #endif],[0])
293 AC_FIND_IF_NOT_BROKEN(gai_strerror,,
294 [#ifdef HAVE_NETDB_H
295 #include <netdb.h>
296 #endif
297 #ifdef HAVE_WS2TCPIP_H
298 #include <ws2tcpip.h>
299 #endif],[0])
301 dnl Darwin is weird, and in some senses not unix, launchd doesn't want
302 dnl servers to use daemon(), so its deprecated.
303 case "$host_os" in
304         darwin*)
305                 ;;
306         *)
307                 AC_DEFINE([SUPPORT_DETACH], 1,
308                     [Define if os support want to detach is daemonens.])
309                 AC_BROKEN([daemon]) ;;
310 esac
312 AC_BROKEN([                                     \
313         chown                                   \
314         copyhostent                             \
315         closefrom                               \
316         ecalloc                                 \
317         emalloc                                 \
318         erealloc                                \
319         estrdup                                 \
320         err                                     \
321         errx                                    \
322         fchown                                  \
323         flock                                   \
324         fnmatch                                 \
325         freehostent                             \
326         getcwd                                  \
327         getdtablesize                           \
328         getegid                                 \
329         geteuid                                 \
330         getgid                                  \
331         gethostname                             \
332         getifaddrs                              \
333         getipnodebyaddr                         \
334         getipnodebyname                         \
335         getopt                                  \
336         gettimeofday                            \
337         getuid                                  \
338         getusershell                            \
339         initgroups                              \
340         innetgr                                 \
341         iruserok                                \
342         localtime_r                             \
343         lstat                                   \
344         memmove                                 \
345         mkstemp                                 \
346         putenv                                  \
347         rcmd                                    \
348         readv                                   \
349         recvmsg                                 \
350         sendmsg                                 \
351         setegid                                 \
352         setenv                                  \
353         seteuid                                 \
354         strcasecmp                              \
355         strdup                                  \
356         strerror                                \
357         strftime                                \
358         strlcat                                 \
359         strlcpy                                 \
360         strlwr                                  \
361         strncasecmp                             \
362         strndup                                 \
363         strnlen                                 \
364         strptime                                \
365         strsep                                  \
366         strsep_copy                             \
367         strtok_r                                \
368         strupr                                  \
369         swab                                    \
370         timegm                                  \
371         unsetenv                                \
372         verr                                    \
373         verrx                                   \
374         vsyslog                                 \
375         vwarn                                   \
376         vwarnx                                  \
377         warn                                    \
378         warnx                                   \
379         writev                                  \
382 AM_CONDITIONAL(have_fnmatch_h,
383         test "$ac_cv_header_fnmatch_h" = yes -a "$ac_cv_func_fnmatch" = yes)
385 AC_FOREACH([rk_func], [strndup strsep strtok_r],
386         [AC_NEED_PROTO([#include <string.h>], rk_func)])
388 AC_FOREACH([rk_func], [strsvis strsvisx strunvis strvis strvisx svis unvis vis],
389 [AC_NEED_PROTO([#ifdef HAVE_VIS_H
390 #include <vis.h>
391 #endif], rk_func)])
393 AC_BROKEN2(inet_aton,
394 [#ifdef HAVE_SYS_TYPES_H
395 #include <sys/types.h>
396 #endif
397 #ifdef HAVE_SYS_SOCKET_H
398 #include <sys/socket.h>
399 #endif
400 #ifdef HAVE_NETINET_IN_H
401 #include <netinet/in.h>
402 #endif
403 #ifdef HAVE_ARPA_INET_H
404 #include <arpa/inet.h>
405 #endif],
406 [0,0])
408 AC_BROKEN2(inet_ntop,
409 [#ifdef HAVE_SYS_TYPES_H
410 #include <sys/types.h>
411 #endif
412 #ifdef HAVE_SYS_SOCKET_H
413 #include <sys/socket.h>
414 #endif
415 #ifdef HAVE_NETINET_IN_H
416 #include <netinet/in.h>
417 #endif
418 #ifdef HAVE_ARPA_INET_H
419 #include <arpa/inet.h>
420 #endif],
421 [0, 0, 0, 0])
423 AC_BROKEN2(inet_pton,
424 [#ifdef HAVE_SYS_TYPES_H
425 #include <sys/types.h>
426 #endif
427 #ifdef HAVE_SYS_SOCKET_H
428 #include <sys/socket.h>
429 #endif
430 #ifdef HAVE_NETINET_IN_H
431 #include <netinet/in.h>
432 #endif
433 #ifdef HAVE_ARPA_INET_H
434 #include <arpa/inet.h>
435 #endif],
436 [0,0,0])
439 dnl Check for sa_len in struct sockaddr, 
440 dnl needs to come before the getnameinfo test
442 AC_HAVE_STRUCT_FIELD(struct sockaddr, sa_len, [#include <sys/types.h>
443 #include <sys/socket.h>])
445 if test "$ac_cv_func_getaddrinfo" = "yes"; then
446   rk_BROKEN_GETADDRINFO
447   if test "$ac_cv_func_getaddrinfo_numserv" = no; then
448         AC_LIBOBJ(getaddrinfo)
449         AC_LIBOBJ(freeaddrinfo)
450   fi
453 AC_NEED_PROTO([#include <stdlib.h>], setenv)
454 AC_NEED_PROTO([#include <stdlib.h>], unsetenv)
455 AC_NEED_PROTO([#include <unistd.h>], gethostname)
456 AC_NEED_PROTO([#include <unistd.h>], mkstemp)
457 AC_NEED_PROTO([#include <unistd.h>], getusershell)
458 AC_NEED_PROTO([#include <unistd.h>], daemon)
459 AC_NEED_PROTO([
460 #ifdef HAVE_SYS_TYPES_H
461 #include <sys/types.h>
462 #endif
463 #ifdef HAVE_SYS_SOCKET_H
464 #include <sys/socket.h>
465 #endif
466 #ifdef HAVE_NETINET_IN_H
467 #include <netinet/in.h>
468 #endif
469 #ifdef HAVE_ARPA_INET_H
470 #include <arpa/inet.h>
471 #endif
472 #ifdef HAVE_NETDB_H
473 #include <netdb.h>
474 #endif
475 #ifdef HAVE_UNISTD_H
476 #include <unistd.h>
477 #endif],
478 iruserok)
480 AC_NEED_PROTO([
481 #ifdef HAVE_SYS_TYPES_H
482 #include <sys/types.h>
483 #endif
484 #ifdef HAVE_SYS_SOCKET_H
485 #include <sys/socket.h>
486 #endif
487 #ifdef HAVE_NETINET_IN_H
488 #include <netinet/in.h>
489 #endif
490 #ifdef HAVE_ARPA_INET_H
491 #include <arpa/inet.h>
492 #endif],
493 inet_aton)
495 AC_FIND_FUNC_NO_LIBS(crypt, crypt)dnl
497 AC_REQUIRE([rk_BROKEN_REALLOC])dnl
499 dnl AC_KRB_FUNC_GETCWD_BROKEN
501 dnl strerror_r is great fun, on linux it exists before sus catched up,
502 dnl so the return type is diffrent, lets check for both
504 AC_PROTO_COMPAT([
505 #include <stdio.h>
506 #include <string.h>
508 strerror_r, int strerror_r(int, char *, size_t))
510 AC_CHECK_FUNC([strerror_r],
511     [AC_DEFINE_UNQUOTED(HAVE_STRERROR_R, 1,
512         [Define if you have the function strerror_r.])])
515 dnl Checks for prototypes and declarations
518 AC_PROTO_COMPAT([
519 #ifdef HAVE_SYS_TYPES_H
520 #include <sys/types.h>
521 #endif
522 #ifdef HAVE_SYS_SOCKET_H
523 #include <sys/socket.h>
524 #endif
525 #ifdef HAVE_NETINET_IN_H
526 #include <netinet/in.h>
527 #endif
528 #ifdef HAVE_ARPA_INET_H
529 #include <arpa/inet.h>
530 #endif
531 #ifdef HAVE_NETDB_H
532 #include <netdb.h>
533 #endif
535 gethostbyname, struct hostent *gethostbyname(const char *))
537 AC_PROTO_COMPAT([
538 #ifdef HAVE_SYS_TYPES_H
539 #include <sys/types.h>
540 #endif
541 #ifdef HAVE_SYS_SOCKET_H
542 #include <sys/socket.h>
543 #endif
544 #ifdef HAVE_NETINET_IN_H
545 #include <netinet/in.h>
546 #endif
547 #ifdef HAVE_ARPA_INET_H
548 #include <arpa/inet.h>
549 #endif
550 #ifdef HAVE_NETDB_H
551 #include <netdb.h>
552 #endif
554 gethostbyaddr, struct hostent *gethostbyaddr(const void *, size_t, int))
556 AC_PROTO_COMPAT([
557 #ifdef HAVE_SYS_TYPES_H
558 #include <sys/types.h>
559 #endif
560 #ifdef HAVE_SYS_SOCKET_H
561 #include <sys/socket.h>
562 #endif
563 #ifdef HAVE_NETINET_IN_H
564 #include <netinet/in.h>
565 #endif
566 #ifdef HAVE_ARPA_INET_H
567 #include <arpa/inet.h>
568 #endif
569 #ifdef HAVE_NETDB_H
570 #include <netdb.h>
571 #endif
573 getservbyname, struct servent *getservbyname(const char *, const char *))
575 AC_PROTO_COMPAT([
576 #ifdef HAVE_SYS_TYPES_H
577 #include <sys/types.h>
578 #endif
579 #ifdef HAVE_SYS_SOCKET_H
580 #include <sys/socket.h>
581 #endif
583 getsockname, int getsockname(int, struct sockaddr*, socklen_t*))
585 AC_PROTO_COMPAT([
586 #ifdef HAVE_SYSLOG_H
587 #include <syslog.h>
588 #endif
590 openlog, void openlog(const char *, int, int))
592 AC_NEED_PROTO([
593 #ifdef HAVE_CRYPT_H
594 #include <crypt.h>
595 #endif
596 #ifdef HAVE_UNISTD_H
597 #include <unistd.h>
598 #endif
600 crypt)
602 dnl variables
604 rk_CHECK_VAR(h_errno, 
605 [#ifdef HAVE_SYS_TYPES_H
606 #include <sys/types.h>
607 #endif
608 #ifdef HAVE_NETDB_H
609 #include <netdb.h>
610 #endif
611 #ifdef HAVE_WS2TCPIP_H
612 #include <ws2tcpip.h>
613 #endif
616 rk_CHECK_VAR(h_errlist, 
617 [#ifdef HAVE_NETDB_H
618 #include <netdb.h>
619 #endif
620 #ifdef HAVE_WS2TCPIP_H
621 #include <ws2tcpip.h>
622 #endif])
624 rk_CHECK_VAR(h_nerr, 
625 [#ifdef HAVE_NETDB_H
626 #include <netdb.h>
627 #endif
628 #ifdef HAVE_WS2TCPIP_H
629 #include <ws2tcpip.h>
630 #endif])
632 rk_CHECK_VAR([__progname], 
633 [#ifdef HAVE_ERR_H
634 #include <err.h>
635 #endif])
637 AC_CHECK_DECLS([optarg, optind, opterr, optopt, environ],[],[],[
638 #include <stdlib.h>
639 #ifdef HAVE_UNISTD_H
640 #include <unistd.h>
641 #endif])
644 dnl Check for fields in struct tm
647 AC_HAVE_STRUCT_FIELD(struct tm, tm_gmtoff, [#include <time.h>])
648 AC_HAVE_STRUCT_FIELD(struct tm, tm_zone, [#include <time.h>])
651 dnl or do we have a variable `timezone' ?
654 rk_CHECK_VAR(timezone,[#include <time.h>])
655 rk_CHECK_VAR(altzone,[#include <time.h>])
657 AC_HAVE_TYPE([sa_family_t],[
658 #include <sys/types.h>
659 #ifdef HAVE_SYS_SOCKET_H
660 #include <sys/socket.h>
661 #endif
662 #ifdef HAVE_WS2TCPIP_H
663 #include <ws2tcpip.h>
664 #endif])
665 AC_HAVE_TYPE([socklen_t],[
666 #include <sys/types.h>
667 #ifdef HAVE_SYS_SOCKET_H
668 #include <sys/socket.h>
669 #endif
670 #ifdef HAVE_WS2TCPIP_H
671 #include <ws2tcpip.h>
672 #endif])
673 AC_HAVE_TYPE([struct sockaddr], [
674 #include <sys/types.h>
675 #ifdef HAVE_SYS_SOCKET_H
676 #include <sys/socket.h>
677 #endif
678 #ifdef HAVE_WS2TCPIP_H
679 #include <ws2tcpip.h>
680 #endif])
681 AC_HAVE_TYPE([struct sockaddr_storage], [
682 #include <sys/types.h>
683 #ifdef HAVE_SYS_SOCKET_H
684 #include <sys/socket.h>
685 #endif
686 #ifdef HAVE_WS2TCPIP_H
687 #include <ws2tcpip.h>
688 #endif])
689 AC_HAVE_TYPE([struct addrinfo], [
690 #include <sys/types.h>
691 #ifdef HAVE_NETDB_H
692 #include <netdb.h>
693 #endif
694 #ifdef HAVE_WS2TCPIP_H
695 #include <ws2tcpip.h>
696 #endif])
697 AC_HAVE_TYPE([struct ifaddrs], [#include <ifaddrs.h>])
698 AC_HAVE_TYPE([struct iovec],[
699 #include <sys/types.h>
700 #include <sys/uio.h>
702 AC_HAVE_TYPE([struct msghdr],[
703 #include <sys/types.h>
704 #ifdef HAVE_SYS_SOCKET_H
705 #include <sys/socket.h>
706 #endif
707 #ifdef HAVE_WS2TCPIP_H
708 #include <ws2tcpip.h>
709 #endif])
712 dnl Check for struct winsize
715 AC_KRB_STRUCT_WINSIZE
718 dnl Check for struct spwd
721 AC_KRB_STRUCT_SPWD
724 # Check if we want samba's socket wrapper
727 samba_SOCKET_WRAPPER
729 dnl won't work with automake
730 dnl moved to AC_OUTPUT in configure.in
731 dnl AC_CONFIG_FILES($1/Makefile)
733 LIB_roken="${LIB_roken} \$(LIB_crypt) \$(LIB_dbopen)"
735 AC_SUBST(DIR_roken)dnl
736 AC_SUBST(LIB_roken)dnl
737 AC_SUBST(INCLUDES_roken)dnl