*** empty log message ***

This commit is contained in:
hyung-hwan 2005-01-20 15:56:42 +00:00
parent 0855de20c5
commit ec3ef9f883
2 changed files with 5 additions and 61 deletions

View File

@ -1,57 +1,3 @@
/* xp/config.h.in. Generated from configure.ac by autoheader. */
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET
/* Define to 1 if your system has a GNU libc compatible `realloc' function,
and to 0 otherwise. */
#undef HAVE_REALLOC
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Big Endian */
#undef XP_ENDIAN_BIG
@ -82,5 +28,3 @@
/* _POSIX_SOURCE */
#undef _POSIX_SOURCE
/* Define to rpl_realloc if the replacement function should be used. */
#undef realloc

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.59)
AC_INIT([xpkit], [deb-0.1.0])
AC_REVISION([$Revision: 1.10 $])
AC_REVISION([$Revision: 1.11 $])
AC_CONFIG_HEADER([xp/config.h])
# Checks for programs.
@ -11,7 +11,7 @@ AC_PROG_RANLIB
# Checks for libraries.
# Checks for header files.
#AC_HEADER_STDC
AC_HEADER_STDC
AC_CHECK_HEADER([unistd.h], [AC_DEFINE([XP_HAVE_UNISTD_H],[],[unistd.h])])
AC_CHECK_HEADER([fcntl.h], [AC_DEFINE([XP_HAVE_FCNTL_H],[],[fcntl.h])])
AC_CHECK_HEADER([stdarg.h], [AC_DEFINE([XP_HAVE_STDARG_H],[],[stdarg.h])])
@ -26,9 +26,9 @@ AC_C_BIGENDIAN(
[AC_DEFINE([XP_ENDIAN_UNKNOWN],[],[Unknown Endian])])
# Checks for library functions.
AC_FUNC_MEMCMP
AC_FUNC_REALLOC
AC_CHECK_FUNCS([memset])
#AC_FUNC_MEMCMP
#AC_FUNC_REALLOC
#AC_CHECK_FUNCS([memset])
# Checks for system files
AC_CHECK_FILE([/NextDeveloper],[AC_DEFINE([_POSIX_SOURCE],[],[_POSIX_SOURCE])])