gecko-dev/webtools/bonsai/configure.in
kiko%async.com.br 4f52134c24 Fix for bug 128747: Bonsai should be made architecture independent.
Convert trapdoor to being a perl file that uses builtin crypt(), and
fix pretty much everything that treated it specially. We now no longer
depend on gcc or anything else. Also fixes by consequence bug 263242,
How about if trapdoor didn't SEGV with no arguments?  which caused me
much embarassment this week. r=cls.
2004-10-08 01:06:46 +00:00

26 lines
499 B
Plaintext

dnl Process this file with autoconf to produce a configure script.
AC_INIT
dnl Checks for programs.
AC_PATH_PROG(PERL,perl)
AC_PERL_DB
AC_PERL_DATEPARSE
AC_PATH_PROG(CO,co)
AC_PATH_PROG(CVS,cvs)
AC_PATH_PROG(RLOG,rlog)
AC_PATH_PROG(RCSDIFF,rcsdiff)
dnl Checks for libraries.
dnl Checks for header files.
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
AC_OUTPUT(Makefile)
AC_OUTPUT_COMMANDS([echo type 'make install' to install bonsai])