| 899 EXTERNAL_LIBZEPHYR = zephyr |
899 EXTERNAL_LIBZEPHYR = zephyr |
| 900 conf.set('LIBZEPHYR_EXT', EXTERNAL_LIBZEPHYR) |
900 conf.set('LIBZEPHYR_EXT', EXTERNAL_LIBZEPHYR) |
| 901 |
901 |
| 902 #AC_MSG_CHECKING(for me pot o' gold) |
902 #AC_MSG_CHECKING(for me pot o' gold) |
| 903 #AC_MSG_RESULT(no) |
903 #AC_MSG_RESULT(no) |
| 904 foreach func : ['gethostid', 'timegm'] |
904 foreach func : ['timegm'] |
| 905 conf.set('HAVE_' + func.to_upper(), |
905 conf.set('HAVE_' + func.to_upper(), |
| 906 compiler.has_function(func)) |
906 compiler.has_function(func)) |
| 907 endforeach |
907 endforeach |
| 908 foreach header : 'paths.h sgtty.h sys/cdefs.h sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h sys/select.h sys/uio.h sys/utsname.h sys/wait.h termios.h'.split() |
908 foreach header : 'sgtty.h sys/cdefs.h sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h sys/select.h sys/wait.h termios.h'.split() |
| 909 conf.set('HAVE_' + header.to_upper().underscorify(), |
909 conf.set('HAVE_' + header.to_upper().underscorify(), |
| 910 compiler.has_header(header)) |
910 compiler.has_header(header)) |
| 911 endforeach |
911 endforeach |
| 912 |
912 |
| 913 # sys/sysctl.h on OpenBSD 4.2 requires sys/param.h |
913 # sys/sysctl.h on OpenBSD 4.2 requires sys/param.h |