[1aee7d9] | 1 | dnl $Id$ |
---|
[7d4fbcd] | 2 | dnl Process this file with autoconf to produce a configure script. |
---|
| 3 | AC_INIT(owl.c) |
---|
| 4 | |
---|
| 5 | AC_CONFIG_HEADER(config.h) |
---|
| 6 | |
---|
| 7 | AC_PROG_CC |
---|
| 8 | |
---|
| 9 | dnl If we're using GCC, enable all warnings |
---|
| 10 | if test "$GCC" = yes; then |
---|
| 11 | CFLAGS="$CFLAGS -Wall -g"; |
---|
| 12 | fi |
---|
| 13 | |
---|
| 14 | dnl Check for Athena |
---|
| 15 | AC_MSG_CHECKING(for /usr/athena/include) |
---|
| 16 | if test -d /usr/athena/include; then |
---|
| 17 | CFLAGS=${CFLAGS}\ -I/usr/athena/include |
---|
[e6449bc] | 18 | CPPFLAGS=${CPPFLAGS}\ -I/usr/athena/include |
---|
[7d4fbcd] | 19 | AC_MSG_RESULT(yes) |
---|
| 20 | else |
---|
| 21 | AC_MSG_RESULT(no) |
---|
| 22 | fi |
---|
| 23 | AC_MSG_CHECKING(for /usr/athena/lib) |
---|
| 24 | if test -d /usr/athena/lib; then |
---|
[1d7e094] | 25 | LDFLAGS=${LDFLAGS}\ -L/usr/athena/lib |
---|
[7d4fbcd] | 26 | AC_MSG_RESULT(yes) |
---|
| 27 | else |
---|
| 28 | AC_MSG_RESULT(no) |
---|
| 29 | fi |
---|
| 30 | |
---|
[fe39450] | 31 | dnl Check for kerberosIV include |
---|
[18e28a4] | 32 | AC_MSG_CHECKING(for kerberosIV) |
---|
[fe39450] | 33 | if test -d /usr/include/kerberosIV; then |
---|
| 34 | CFLAGS=${CFLAGS}\ -I/usr/include/kerberosIV |
---|
| 35 | CPPFLAGS=${CPPFLAGS}\ -I/usr/include/kerberosIV |
---|
| 36 | AC_MSG_RESULT(yes) |
---|
[18e28a4] | 37 | elif test -d /usr/local/include/kerberosIV; then |
---|
| 38 | CFLAGS=${CFLAGS}\ -I/usr/local/include/kerberosIV |
---|
| 39 | CPPFLAGS=${CPPFLAGS}\ -I/usr/local/include/kerberosIV |
---|
| 40 | AC_MSG_RESULT(yes) |
---|
[b5fe6d2] | 41 | elif test -d /usr/include/openssl; then |
---|
| 42 | CFLAGS=${CFLAGS}\ -I/usr/include/openssl |
---|
| 43 | CPPFLAGS=${CPPFLAGS}\ -I/usr/include/openssl |
---|
| 44 | AC_MSG_RESULT(OpenSSL DES found instead) |
---|
[fe39450] | 45 | else |
---|
| 46 | AC_MSG_RESULT(no) |
---|
| 47 | fi |
---|
| 48 | |
---|
[4097723] | 49 | AC_ARG_WITH([stack-protector], |
---|
| 50 | [AS_HELP_STRING([--with-stack-protector], |
---|
| 51 | [Enable gcc -fstack-protector])], |
---|
| 52 | [], |
---|
| 53 | [with_stack_protector=check]) |
---|
| 54 | |
---|
| 55 | AS_IF([test "x$with_stack_protector" != xno], |
---|
| 56 | [ |
---|
| 57 | SAVE_CFLAGS=$CFLAGS |
---|
| 58 | CFLAGS="$CFLAGS -fstack-protector" |
---|
| 59 | AC_MSG_CHECKING(whether protection cflags work) |
---|
| 60 | AC_COMPILE_IFELSE(int i;, |
---|
| 61 | [AC_MSG_RESULT(yes)], |
---|
| 62 | [AC_MSG_RESULT(no) |
---|
| 63 | CFLAGS=$SAVE_CFLAGS |
---|
| 64 | if test "x$with_stack_protector" != xcheck; then |
---|
| 65 | AC_MSG_FAILURE([--with-stack-protector selected, but gcc does support it.]) |
---|
| 66 | fi]) |
---|
| 67 | AC_CHECK_LIB(ssp, __stack_chk_guard) |
---|
| 68 | ]) |
---|
[87afe92] | 69 | |
---|
[d54035d] | 70 | AC_CHECK_LIB(ncursesw, initscr,, AC_MSG_ERROR(No libncursesw found.)) |
---|
[7d4fbcd] | 71 | AC_CHECK_LIB(com_err, com_err) |
---|
| 72 | AC_CHECK_LIB(nsl, gethostbyname) |
---|
| 73 | AC_CHECK_LIB(socket, socket) |
---|
[8298425] | 74 | dnl AC_CHECK_LIB(des425, req_act_vno) |
---|
[b5fe6d2] | 75 | AC_CHECK_LIB(des425, des_cbc_encrypt,,AC_CHECK_LIB(crypto,DES_cbc_encrypt)) |
---|
[d09e5a1] | 76 | AC_CHECK_LIB(resolv, res_search) |
---|
[2c270e6] | 77 | |
---|
| 78 | AC_ARG_WITH([zephyr], |
---|
| 79 | [AS_HELP_STRING([--with-libzephyr], |
---|
| 80 | [Disable Zephyr support])], |
---|
| 81 | [], |
---|
| 82 | [with_zephyr=check]) |
---|
| 83 | |
---|
| 84 | AS_IF([test "x$with_zephyr" != xno], |
---|
| 85 | [AC_CHECK_LIB([zephyr], [ZGetSender], |
---|
[16c0416] | 86 | [LIBS="$LIBS -lzephyr" |
---|
| 87 | AC_DEFINE([HAVE_LIBZEPHYR], [1], |
---|
[2c270e6] | 88 | [Define if you have libzephyr]) |
---|
| 89 | AC_CHECK_LIB([zephyr], [ZInitLocationInfo], |
---|
| 90 | AC_DEFINE([HAVE_LIBZEPHYR_ZINITLOCATIONINFO], [1], |
---|
| 91 | [Have ZInitLocationInfo]),) |
---|
| 92 | ], |
---|
| 93 | [if test "x$with_zephyr" != xcheck; then |
---|
| 94 | AC_MSG_FAILURE( |
---|
| 95 | [--with-libzephyr was given, but libzephyr does not seem to be available.]) |
---|
| 96 | fi |
---|
| 97 | ])]) |
---|
[ac70242] | 98 | |
---|
[7ccc780] | 99 | AC_ARG_ENABLE([athstatic], AS_HELP_STRING([--enable-athstatic], |
---|
| 100 | [Statically link libraries in /usr/athena/lib]), |
---|
| 101 | [ATHSTATIC=./athstatic], |
---|
| 102 | [ATHSTATIC=]) |
---|
| 103 | |
---|
[dc2ad79] | 104 | AC_CHECK_FUNCS(use_default_colors resizeterm des_string_to_key des_key_sched des_ecb_encrypt) |
---|
[b5fe6d2] | 105 | AC_CHECK_FUNCS( DES_string_to_key DES_ecb_encrypt DES_key_sched) |
---|
[e51b410] | 106 | |
---|
[ac70242] | 107 | AC_MSG_CHECKING(for des_ecb_encrypt prototype) |
---|
| 108 | AC_TRY_COMPILE([#include <des.h> |
---|
| 109 | int des_ecb_encrypt(char foo[], char bar[], des_key_schedule baz, int qux);], |
---|
| 110 | [int foo = des_ecb_encrypt(0,0,0,0);], |
---|
| 111 | ac_cv_des_ecb_encrypt_proto=no, |
---|
| 112 | ac_cv_des_ecb_encrypt_proto=yes) |
---|
| 113 | AC_MSG_RESULT($ac_cv_des_ecb_encrypt_proto) |
---|
| 114 | if test "$ac_cv_des_ecb_encrypt_proto" = yes; then |
---|
| 115 | AC_DEFINE([HAVE_DES_ECB_ENCRYPT_PROTO], [], [have proto for des_ecb_encrypt]) |
---|
| 116 | fi |
---|
[7d4fbcd] | 117 | |
---|
| 118 | dnl Checks for header files. |
---|
| 119 | AC_HEADER_STDC |
---|
| 120 | AC_HEADER_SYS_WAIT |
---|
[e8b95f8] | 121 | AC_CHECK_HEADERS(strings.h sys/ioctl.h sys/filio.h unistd.h com_err.h) |
---|
[7d4fbcd] | 122 | |
---|
| 123 | dnl Add CFLAGS for embeded perl |
---|
| 124 | FOO=`perl -MExtUtils::Embed -e ccopts` |
---|
[7c09b21] | 125 | AC_MSG_NOTICE([Adding perl CFLAGS ${FOO}]) |
---|
[7d4fbcd] | 126 | CFLAGS=${CFLAGS}\ ${FOO} |
---|
| 127 | |
---|
[e51b410] | 128 | dnl Find the location of perl XSUBPP |
---|
[8ee73f8d] | 129 | AC_MSG_CHECKING(for the perl xsubpp precompiler) |
---|
[6794f72] | 130 | XSUBPPDIR="`(perl -MExtUtils::MakeMaker -e 'print ExtUtils::MakeMaker->new({NAME => qw(owl)})->tool_xsubpp;') | grep \^XSUBPPDIR | sed -e 's/XSUBPPDIR = //g;'`" |
---|
[8ee73f8d] | 131 | if test -n "${XSUBPPDIR}"; then |
---|
| 132 | AC_MSG_RESULT(${XSUBPPDIR}) |
---|
| 133 | else |
---|
| 134 | AC_MSG_ERROR(not found) |
---|
| 135 | fi |
---|
| 136 | |
---|
[4ad3480] | 137 | if test -f "${XSUBPPDIR}/typemap"; then |
---|
| 138 | XSUBPPFLAGS="-typemap ${XSUBPPDIR}/typemap" |
---|
| 139 | else |
---|
| 140 | XSUBPPFLAGS="" |
---|
| 141 | fi |
---|
| 142 | |
---|
[18e28a4] | 143 | dnl Add LDFLAGS for embedded perl |
---|
[3f21b8e] | 144 | FOO=`perl -MExtUtils::Embed -e ldopts` |
---|
[7c09b21] | 145 | AC_MSG_NOTICE([Adding perl LDFLAGS ${FOO}]) |
---|
[7d4fbcd] | 146 | LDFLAGS=${LDFLAGS}\ ${FOO} |
---|
| 147 | |
---|
[34509d5] | 148 | dnl Add CFLAGS and LDFLAGS for glib-2.0 |
---|
| 149 | PKG_CHECK_MODULES(GLIB,glib-2.0) |
---|
| 150 | |
---|
[7c09b21] | 151 | AC_MSG_NOTICE([Adding glib-2.0 CFLAGS ${GLIB_CFLAGS}]) |
---|
[d9337637] | 152 | CFLAGS="${GLIB_CFLAGS} ${CFLAGS}" |
---|
[7c09b21] | 153 | AC_MSG_NOTICE([Adding glib-2.0 LDFLAGS ${GLIB_LIBS}]) |
---|
[d9337637] | 154 | LDFLAGS="${GLIB_LIBS} ${LDFLAGS}" |
---|
[34509d5] | 155 | |
---|
[7d4fbcd] | 156 | dnl Checks for typedefs, structures, and compiler characteristics. |
---|
| 157 | |
---|
[c50f589] | 158 | dnl Support --program-{prefix,suffix,transform} |
---|
| 159 | AC_ARG_PROGRAM |
---|
| 160 | |
---|
[15bd5ef] | 161 | AC_SUBST(XSUBPPDIR) |
---|
[4ad3480] | 162 | AC_SUBST(XSUBPPFLAGS) |
---|
[7ccc780] | 163 | AC_SUBST(ATHSTATIC) |
---|
[8ee73f8d] | 164 | |
---|
[ac70242] | 165 | AC_PROG_INSTALL |
---|
| 166 | |
---|
[d09e5a1] | 167 | AC_CONFIG_SUBDIRS(libfaim) |
---|
| 168 | |
---|
[7d4fbcd] | 169 | AC_OUTPUT(Makefile) |
---|