mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
29 lines
596 B
Plaintext
29 lines
596 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(trapdoor.c)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
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 Replace `main' with a function in -lcrypt:
|
|
AC_CHECK_LIB(crypt, crypt)
|
|
|
|
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])
|
|
|