File:  [Public] / DOM / configure.in
Revision 1.2: download - view: text, annotated - select for diffs
Sat Jun 13 23:53:11 1998 UTC (25 years, 11 months ago) by daniel
Branches: MAIN
CVS tags: HEAD
Worked starting implementing the code stuff, Daniel.

dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.2)
AC_INIT(dom-core.idl)
AC_REVISION
AC_CONFIG_HEADER(config.h)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_CXX

AC_HEADER_STDC
AC_LANG_CPLUSPLUS
AC_PROG_INSTALL
AC_PATH_PROG(RM, rm, /bin/rm)
AC_PATH_PROG(MV, mv, /bin/mv)
AC_PATH_PROG(TAR, tar, /bin/tar)
AC_PATH_PROG(GZIP, gzip, /bin/gzip)

dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h unistd.h ctype.h dirent.h errno.h malloc.h)
AC_CHECK_HEADERS(stdarg.h sys/stat.h sys/types.h time.h)

dnl Checks for library functions.
AC_FUNC_STRFTIME
AC_CHECK_FUNCS(strdup strndup strerror snprintf )

AC_OUTPUT(Makefile)

Webmaster