Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv18737
Modified Files:
config.h.in configure configure.in
Log Message:
Update automatic config/make process and mkntfs to use the cvs release tag for
version reporting.
Index: config.h.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/config.h.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -U2 -r1.3 -r1.4
--- config.h.in 2001/06/01 02:07:23 1.3
+++ config.h.in 2001/06/05 10:33:02 1.4
@@ -82,4 +82,7 @@
#undef HAVE_PUTS
+/* Define if you have the `random' function. */
+#undef HAVE_RANDOM
+
/* Define if you have the `read' function. */
#undef HAVE_READ
@@ -100,4 +103,7 @@
#undef HAVE_SIGNAL_H
+/* Define if you have the `srandom' function. */
+#undef HAVE_SRANDOM
+
/* Define if you have the `strdup' function. */
#undef HAVE_STRDUP
@@ -118,4 +124,10 @@
#undef HAVE_SYS_TYPES_H
+/* Define if you have the `time' function. */
+#undef HAVE_TIME
+
+/* Define if you have the <time.h> header file. */
+#undef HAVE_TIME_H
+
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
@@ -123,10 +135,4 @@
/* Define if you have the `vprintf' function. */
#undef HAVE_VPRINTF
-
-/* Define if you have the `wcslen' function. */
-#undef HAVE_WCSLEN
-
-/* Define if you have the `wcstombs' function. */
-#undef HAVE_WCSTOMBS
/* Define if you have the `write' function. */
Index: configure
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure,v
retrieving revision 1.3
retrieving revision 1.4
diff -U2 -r1.3 -r1.4
--- configure 2001/06/01 02:07:23 1.3
+++ configure 2001/06/05 10:33:02 1.4
@@ -5660,5 +5660,5 @@
for ac_header in fcntl.h unistd.h errno.h sys/stat.h sys/ioctl.h \
sys/types.h linux/types.h linux/bitops.h asm/byteorder.h asm/atomic.h \
- sys/time.h signal.h sched.h
+ sys/time.h signal.h sched.h time.h
do
ac_ac_Header=`echo "ac_cv_header_$ac_header" | $ac_tr_sh`
@@ -5965,5 +5965,5 @@
for ac_func in memset strdup puts printf fprintf vprintf perror strerror \
malloc calloc free realloc open close read write lseek fdatasync \
- ioctl fflush wcslen wcstombs atexit exit sigaction setitimer
+ ioctl fflush atexit exit sigaction setitimer time srandom random
do
ac_ac_var=`echo "ac_cv_func_$ac_func" | $ac_tr_sh`
Index: configure.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -U2 -r1.3 -r1.4
--- configure.in 2001/06/01 02:07:23 1.3
+++ configure.in 2001/06/05 10:33:02 1.4
@@ -64,5 +64,5 @@
AC_CHECK_HEADERS(fcntl.h unistd.h errno.h sys/stat.h sys/ioctl.h \
sys/types.h linux/types.h linux/bitops.h asm/byteorder.h asm/atomic.h \
- sys/time.h signal.h sched.h)
+ sys/time.h signal.h sched.h time.h)
dnl Checks for typedefs, structures, and compiler characteristics.
@@ -77,5 +77,5 @@
AC_CHECK_FUNCS(memset strdup puts printf fprintf vprintf perror strerror \
malloc calloc free realloc open close read write lseek fdatasync \
- ioctl fflush wcslen wcstombs atexit exit sigaction setitimer)
+ ioctl fflush atexit exit sigaction setitimer time srandom random)
dnl Perform program name transformation.
|