From cf96226f0ff221d677ba131dab0f63247b57dcfb Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 18 Jan 2005 15:26:29 +0000 Subject: [PATCH] *** empty log message *** --- ase/configure.ac | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/ase/configure.ac b/ase/configure.ac index d4bc80fd..866d78a6 100644 --- a/ase/configure.ac +++ b/ase/configure.ac @@ -1 +1,37 @@ -AC_INIT(xpkit,deb-0.1.0) +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.59) +AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) +AC_CONFIG_SRCDIR([xpp/Uncopyable.h]) +AC_CONFIG_HEADER([config.h]) + +# Checks for programs. +AC_PROG_CXX +AC_PROG_AWK +AC_PROG_CC + +# Checks for libraries. + +# Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS([fcntl.h limits.h stddef.h stdlib.h string.h unistd.h wchar.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST + +# Checks for library functions. +AC_FUNC_MEMCMP +AC_FUNC_REALLOC +AC_CHECK_FUNCS([memset]) + +#AC_CONFIG_FILES([build/Makefile +# xp/awk/Makefile +# xp/c/Makefile +# xp/c/makefile +# xp/makefile +# xp/sio/Makefile +# xpp/Makefile]) + +AC_CONFIG_FILES([build/Makefile]) +AC_OUTPUT