mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 18:51:28 +00:00
4f52134c24
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.
26 lines
499 B
Plaintext
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])
|
|
|