source: configure.ac @ c447d9c

release-1.10release-1.7release-1.8release-1.9
Last change on this file since c447d9c was 263320f, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Require resizeterm This allows us to get rid of the endwin, which causes problems. Specifically that ncurses will query the size itself on the next doupdate, causing a potential race. It also results in an annoying flicker that we see in typwindelta. If we punt passing arguments to owl_global_resize, I think we can support resizeterm-less curses with a bit of a dance: endwin() h,w = query_terminal_size() relayout_windows(h, w) doupdate() if (h,w != query_ncurses_size()) h,w = query_ncurses_size() relayout_windows(h, w) (This will only flicker given a race.) That said, this is annoying and we build with our own curses on athena 9. We may as well just assume it's there.
  • Property mode set to 100644
File size: 4.7 KB
RevLine 
[7d4fbcd]1dnl Process this file with autoconf to produce a configure script.
[07f655b]2AC_INIT([BarnOwl],[1.7dev],[bug-barnowl@mit.edu])
[cecb125]3AM_INIT_AUTOMAKE([1.7.0 -Wall -Wno-portability foreign])
[636de2a]4m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
[7d4fbcd]5
[8073852]6AC_CONFIG_MACRO_DIR([m4])
[37f27bc]7AC_CONFIG_HEADER([config.h])
[7d4fbcd]8
9AC_PROG_CC
10
[4097723]11AC_ARG_WITH([stack-protector],
12  [AS_HELP_STRING([--with-stack-protector],
13    [Enable gcc -fstack-protector])],
14  [],
15  [with_stack_protector=check])
16
17AS_IF([test "x$with_stack_protector" != xno],
[ce27cc1]18  [AX_C_CHECK_FLAG([-fstack-protector],[],[],
19    [CFLAGS="$CFLAGS -fstack-protector"],
20    [if test "x$with_stack_protector" != xcheck; then
21       AC_MSG_FAILURE([--with-stack-protector selected, but gcc does support it.])
22     fi
23    ])])
[87afe92]24
[d54035d]25AC_CHECK_LIB(ncursesw, initscr,, AC_MSG_ERROR(No libncursesw found.))
[59077f9]26AC_CHECK_LIB(panelw, update_panels,, AC_MSG_ERROR(No libpanelw found.))
[363eb9d]27AC_SEARCH_LIBS([gethostbyname], [nsl])
28AC_SEARCH_LIBS([socket], [socket])
29AC_SEARCH_LIBS([res_search], [resolv])
[2c270e6]30
31AC_ARG_WITH([zephyr],
[438009c]32  [AS_HELP_STRING([--with-zephyr],
[ec21c62]33    [Enable Zephyr support])],
[2c270e6]34  [],
35  [with_zephyr=check])
36
37AS_IF([test "x$with_zephyr" != xno],
[806f769]38  [AC_MSG_CHECKING([for Kerberos IV])
39   AS_IF([krb5-config krb4 --libs >/dev/null 2>&1],
40     [AC_MSG_RESULT([yes])
41      AC_DEFINE([HAVE_KERBEROS_IV], [1], [Define if you have kerberos IV])
42      CFLAGS="${CFLAGS} `krb5-config krb4 --cflags`"
43      LIBS="${LIBS} `krb5-config krb4 --libs`"
44     ],
45     [AC_MSG_RESULT([no])
46      PKG_CHECK_MODULES([LIBCRYPTO], [libcrypto])
47      CFLAGS="${CFLAGS} ${LIBCRYPTO_CFLAGS}"
48      LIBS="${LIBS} ${LIBCRYPTO_LIBS}"
49     ])
50   AC_CHECK_LIB([zephyr], [ZGetSender],
[16c0416]51   [LIBS="$LIBS -lzephyr"
52    AC_DEFINE([HAVE_LIBZEPHYR], [1],
[2c270e6]53                [Define if you have libzephyr])
54    AC_CHECK_LIB([zephyr], [ZInitLocationInfo],
55      AC_DEFINE([HAVE_LIBZEPHYR_ZINITLOCATIONINFO], [1],
56                [Have ZInitLocationInfo]),)
[cc1eeac]57    AC_CHECK_LIB([com_err], [com_err])
58    AC_CHECK_HEADERS([com_err.h])
[2c270e6]59   ],
60   [if test "x$with_zephyr" != xcheck; then
61      AC_MSG_FAILURE(
[438009c]62        [--with-zephyr was given, but libzephyr does not seem to be available.])
[2c270e6]63    fi
64   ])])
[ac70242]65
[263320f]66AC_CHECK_FUNCS([use_default_colors])
67AC_CHECK_FUNCS([resizeterm], [], [AC_MSG_ERROR([No resizeterm found])])
[7d03c8d]68AC_CHECK_FUNCS([des_string_to_key DES_string_to_key], [HAVE_DES_STRING_TO_KEY=1])
69AC_CHECK_FUNCS([des_ecb_encrypt DES_ecb_encrypt], [HAVE_DES_ECB_ENCRYPT=1])
70AC_CHECK_FUNCS([des_key_sched DES_key_sched], [HAVE_DES_KEY_SCHED=1])
[e51b410]71
[7d4fbcd]72dnl Checks for header files.
73AC_HEADER_STDC
74AC_HEADER_SYS_WAIT
[75b0adb]75AC_HEADER_STDBOOL
[cc1eeac]76AC_CHECK_HEADERS(strings.h sys/ioctl.h sys/filio.h unistd.h)
[7d4fbcd]77
78dnl Add CFLAGS for embeded perl
[1c89df8]79PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
80AC_MSG_NOTICE([Adding perl CFLAGS ${PERL_CFLAGS}])
81CFLAGS="${CFLAGS} ${PERL_CFLAGS}"
[7d4fbcd]82
[e51b410]83dnl Find the location of perl XSUBPP
[8ee73f8d]84AC_MSG_CHECKING(for the perl xsubpp precompiler)
[6794f72]85XSUBPPDIR="`(perl -MExtUtils::MakeMaker -e 'print ExtUtils::MakeMaker->new({NAME => qw(owl)})->tool_xsubpp;') | grep \^XSUBPPDIR | sed -e 's/XSUBPPDIR = //g;'`"
[8ee73f8d]86if test -n "${XSUBPPDIR}"; then
87   AC_MSG_RESULT(${XSUBPPDIR})
88else
89   AC_MSG_ERROR(not found)
90fi
91
[4ad3480]92if test -f "${XSUBPPDIR}/typemap"; then
93   XSUBPPFLAGS="-typemap ${XSUBPPDIR}/typemap"
94else
95   XSUBPPFLAGS=""
96fi
97
[18e28a4]98dnl Add LDFLAGS for embedded perl
[3f21b8e]99FOO=`perl -MExtUtils::Embed -e ldopts`
[c08a725]100AC_MSG_NOTICE([Adding perl LIBS ${FOO}])
101LIBS=${LIBS}\ ${FOO}
[4c97193]102AC_CHECK_LIB([perl], [perl_alloc],, AC_MSG_ERROR([No libperl found]))
[7d4fbcd]103
[2d3ed95]104AX_PROG_PERL_MODULES([Class::Accessor::Fast],,
105                     [AC_MSG_ERROR([cannot find perl module Class::Accessor::Fast.])])
106AX_PROG_PERL_MODULES([PAR],,
107                     [AC_MSG_WARN([PAR.pm not found. Loadable modules will be disabled.])])
108
[34509d5]109dnl Add CFLAGS and LDFLAGS for glib-2.0
110PKG_CHECK_MODULES(GLIB,glib-2.0)
111
[7c09b21]112AC_MSG_NOTICE([Adding glib-2.0 CFLAGS ${GLIB_CFLAGS}])
[d9337637]113CFLAGS="${GLIB_CFLAGS} ${CFLAGS}"
[7c09b21]114AC_MSG_NOTICE([Adding glib-2.0 LDFLAGS ${GLIB_LIBS}])
[d9337637]115LDFLAGS="${GLIB_LIBS} ${LDFLAGS}"
[34509d5]116
[37f27bc]117if test "x${prefix}" = "xNONE"; then
118   prefix="${ac_default_prefix}"
119fi
[7d4fbcd]120
[37f27bc]121dnl Checks for typedefs, structures, and compiler characteristics.
[c50f589]122
[79245bc]123AX_CFLAGS_WARN_ALL
[de8945b]124AX_CFLAGS_STRICT_PROTOTYPES
[79245bc]125
[215c119]126AX_C_CHECK_FLAG([-Wno-pointer-sign],[],[],
127  [LIBFAIM_CFLAGS="$LIBFAIM_CFLAGS -Wno-pointer-sign"])
128
[7d03c8d]129AM_CONDITIONAL([ENABLE_ZCRYPT], [test "$HAVE_DES_STRING_TO_KEY" && dnl
130                                 test "$HAVE_DES_KEY_SCHED" && dnl
131                                 test "$HAVE_DES_ECB_ENCRYPT"])
132
[215c119]133AC_SUBST([LIBFAIM_CFLAGS])
134
[15bd5ef]135AC_SUBST(XSUBPPDIR)
[4ad3480]136AC_SUBST(XSUBPPFLAGS)
[8ee73f8d]137
[ac70242]138AC_PROG_INSTALL
[37f27bc]139AC_PROG_RANLIB
[db4b293]140AC_CHECK_PROG([HAVE_ZIP], [zip], [yes], [no])
141if test "x${HAVE_ZIP}" = "xno"; then
142   AC_MSG_ERROR([cannot find a 'zip' binary.])
143fi
[ac70242]144
[10557e6]145AC_CONFIG_FILES([Makefile libfaim/Makefile perl/Makefile perl/modules/Makefile])
[b9c8d28]146AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.