Skip to content

Commit

Permalink
honeytrap
Browse files Browse the repository at this point in the history
- changes to configure.in to work with recent versions of libtool
  • Loading branch information
till committed Nov 19, 2008
1 parent 94b7383 commit d6e7c86
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions configure.in
Expand Up @@ -10,15 +10,21 @@ AC_ARG_ENABLE(64bit-gcc,
[ --enable-64bit-gcc try to compile 64bit (only tested on Sparc Solaris 9).],
[ CFLAGS="-O0 -g" CC="gcc -m64"; export CFLAGS CC ],)

# Disable annoying practice of recursively re-running the autotools
AM_MAINTAINER_MODE
AC_CHECK_PROGS(LEX,flex lex,none)
AC_CHECK_PROGS(YACC,bison yacc,none)
if test "$YACC" = "bison"; then
YACC="$YACC -y"
fi

AM_PROG_CC_STDC
LT_INIT

AC_PROG_CC
AM_PROG_LEX
AC_PROG_YACC
AC_PROG_LD(gnu-ld)
AC_PROG_LIBTOOL

SHELL="/bin/sh"



## prepare fancy console output, taken from GNU shtools
# determine terminal bold sequence
Expand Down

0 comments on commit d6e7c86

Please sign in to comment.