Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv32414
Modified Files:
config.h.in configure configure.in
Log Message:
update
Index: config.h.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/config.h.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -U2 -r1.21 -r1.22
--- config.h.in 2 Jun 2002 14:11:08 -0000 1.21
+++ config.h.in 5 Jun 2002 20:38:11 -0000 1.22
@@ -67,4 +67,7 @@
#undef HAVE_MBSRTOWCS
+/* Define if you have the memcmp function. */
+#undef HAVE_MEMCMP
+
/* Define if you have the memset function. */
#undef HAVE_MEMSET
Index: configure
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure,v
retrieving revision 1.35
retrieving revision 1.36
diff -U2 -r1.35 -r1.36
--- configure 2 Jun 2002 14:11:08 -0000 1.35
+++ configure 5 Jun 2002 20:38:11 -0000 1.36
@@ -6119,7 +6119,7 @@
test $ac_cv_func_memcmp_clean = no && LIBOBJS="$LIBOBJS memcmp.${ac_objext}"
-for ac_func in memset strdup puts printf fprintf vprintf vfprintf perror \
- strerror malloc calloc free realloc open close read write lseek \
- fdatasync ioctl fflush atexit exit time srandom random wcrtomb \
+for ac_func in memset memcmp strdup puts printf fprintf vprintf vfprintf \
+ perror strerror malloc calloc free realloc open close read write \
+ lseek fdatasync ioctl fflush atexit exit time srandom random wcrtomb \
mbrtowc mbsrtowcs setmntent getmntent endmntent hasmntopt
do
Index: configure.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure.in,v
retrieving revision 1.31
retrieving revision 1.32
diff -U2 -r1.31 -r1.32
--- configure.in 2 Jun 2002 14:11:09 -0000 1.31
+++ configure.in 5 Jun 2002 20:38:11 -0000 1.32
@@ -111,7 +111,7 @@
dnl Checks for library functions.
AC_FUNC_MEMCMP
-AC_CHECK_FUNCS(memset strdup puts printf fprintf vprintf vfprintf perror \
- strerror malloc calloc free realloc open close read write lseek \
- fdatasync ioctl fflush atexit exit time srandom random wcrtomb \
+AC_CHECK_FUNCS(memset memcmp strdup puts printf fprintf vprintf vfprintf \
+ perror strerror malloc calloc free realloc open close read write \
+ lseek fdatasync ioctl fflush atexit exit time srandom random wcrtomb \
mbrtowc mbsrtowcs setmntent getmntent endmntent hasmntopt)
|