CVS update: /ccvs/, /ccvs/windows-NT/
[email protected] 24 May 2005 21:06:01 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dprice
Date: 05/05/24 14:06:01
Modified:
/ccvs/
config.h.in, configure
/ccvs/windows-NT/
config.h, config.h.in, stamp-chi
Log:
Regenerated.
File Changes:
Directory: /ccvs/
=================
File [changed]: config.h.in
Url: https://ccvs.cvshome.org/source/browse/ccvs/config.h.in?r1=1.174&r2=1.175
Delta lines: +6 -0
-------------------
--- config.h.in 24 May 2005 16:38:08 -0000 1.174
+++ config.h.in 24 May 2005 21:05:58 -0000 1.175
@@ -1130,6 +1130,9 @@
/* Define to rpl_localtime if the replacement function should be used. */
#undef localtime
+/* Define to a substitute for the `lstat' function. */
+#undef lstat
+
/* Define to rpl_malloc if the replacement function should be used. */
#undef malloc
@@ -1179,6 +1182,9 @@
/* Define as a signed type of the same size as size_t. */
#undef ssize_t
+/* Define to a substitute for the stat function. */
+#undef stat
+
/* Define to rpl_tzset if the wrapper function should be used. */
#undef tzset
File [changed]: configure
Url: https://ccvs.cvshome.org/source/browse/ccvs/configure?r1=1.398&r2=1.399
Delta lines: +82 -63
---------------------
--- configure 24 May 2005 16:38:08 -0000 1.398
+++ configure 24 May 2005 21:05:58 -0000 1.399
@@ -13097,6 +13097,71 @@
;;
esac
+echo "$as_me:$LINENO: checking whether stat accepts an empty string" >&5
+echo $ECHO_N "checking whether stat accepts an empty string... $ECHO_C" >&6
+if test "${ac_cv_func_stat_empty_string_bug+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test "$cross_compiling" = yes; then
+ ac_cv_func_stat_empty_string_bug=yes
+else
+ cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h. */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h. */
+$ac_includes_default
+int
+main ()
+{
+struct stat sbuf;
+ exit (stat ("", &sbuf) ? 1 : 0);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_stat_empty_string_bug=yes
+else
+ echo "$as_me: program exited with status $ac_status" >&5
+echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+( exit $ac_status )
+ac_cv_func_stat_empty_string_bug=no
+fi
+rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+fi
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_stat_empty_string_bug" >&5
+echo "${ECHO_T}$ac_cv_func_stat_empty_string_bug" >&6
+if test $ac_cv_func_stat_empty_string_bug = yes; then
+ case $LIBOBJS in
+ "stat.$ac_objext" | \
+ *" stat.$ac_objext" | \
+ "stat.$ac_objext "* | \
+ *" stat.$ac_objext "* ) ;;
+ *) LIBOBJS="$LIBOBJS stat.$ac_objext" ;;
+esac
+
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_STAT_EMPTY_STRING_BUG 1
+_ACEOF
+
+fi
+
echo "$as_me:$LINENO: checking for inttypes.h" >&5
echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6
@@ -20501,10 +20566,22 @@
fi
+ if test $ac_cv_func_lstat_empty_string_bug = yes \
+ || test $ac_cv_func_lstat_dereferences_slashed_symlink = no; then
+
:
+cat >>confdefs.h <<\_ACEOF
+#define lstat rpl_lstat
+_ACEOF
+
+
+ fi
+ :
+
+
for ac_header in stdlib.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -23765,74 +23842,16 @@
fi
- echo "$as_me:$LINENO: checking whether stat accepts an empty string" >&5
-echo $ECHO_N "checking whether stat accepts an empty string... $ECHO_C" >&6
-if test "${ac_cv_func_stat_empty_string_bug+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- if test "$cross_compiling" = yes; then
- ac_cv_func_stat_empty_string_bug=yes
-else
- cat >conftest.$ac_ext <<_ACEOF
-/* confdefs.h. */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h. */
-$ac_includes_default
-int
-main ()
-{
-struct stat sbuf;
- exit (stat ("", &sbuf) ? 1 : 0);
- ;
- return 0;
-}
-_ACEOF
-rm -f conftest$ac_exeext
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
- (eval $ac_link) 2>&5
- ac_status=$?
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
- (eval $ac_try) 2>&5
- ac_status=$?
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); }; }; then
- ac_cv_func_stat_empty_string_bug=yes
-else
- echo "$as_me: program exited with status $ac_status" >&5
-echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
-( exit $ac_status )
-ac_cv_func_stat_empty_string_bug=no
-fi
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-fi
-fi
-echo "$as_me:$LINENO: result: $ac_cv_func_stat_empty_string_bug" >&5
-echo "${ECHO_T}$ac_cv_func_stat_empty_string_bug" >&6
-if test $ac_cv_func_stat_empty_string_bug = yes; then
- case $LIBOBJS in
- "stat.$ac_objext" | \
- *" stat.$ac_objext" | \
- "stat.$ac_objext "* | \
- *" stat.$ac_objext "* ) ;;
- *) LIBOBJS="$LIBOBJS stat.$ac_objext" ;;
-esac
+ if test $ac_cv_func_stat_empty_string_bug = yes; then
-cat >>confdefs.h <<_ACEOF
-#define HAVE_STAT_EMPTY_STRING_BUG 1
-_ACEOF
+ :
-fi
- if test $ac_cv_func_stat_empty_string_bug = yes; then
+cat >>confdefs.h <<\_ACEOF
+#define stat rpl_stat
+_ACEOF
- :
fi
Directory: /ccvs/windows-NT/
============================
File [changed]: config.h
Url: https://ccvs.cvshome.org/source/browse/ccvs/windows-NT/config.h?r1=1.144&r2=1.145
Delta lines: +6 -0
-------------------
--- config.h 24 May 2005 16:38:08 -0000 1.144
+++ config.h 24 May 2005 21:05:59 -0000 1.145
@@ -1152,6 +1152,9 @@
/* Define to rpl_localtime if the replacement function should be used. */
#undef localtime
+/* Define to a substitute for the `lstat' function. */
+#undef lstat
+
/* Define to rpl_malloc if the replacement function should be used. */
#undef malloc
@@ -1201,6 +1204,9 @@
/* Define as a signed type of the same size as size_t. */
#define ssize_t int
+/* Define to a substitute for the stat function. */
+#undef stat
+
/* Define to rpl_tzset if the wrapper function should be used. */
#undef tzset
File [changed]: config.h.in
Url: https://ccvs.cvshome.org/source/browse/ccvs/windows-NT/config.h.in?r1=1.73&r2=1.74
Delta lines: +6 -0
-------------------
--- config.h.in 24 May 2005 16:38:08 -0000 1.73
+++ config.h.in 24 May 2005 21:05:59 -0000 1.74
@@ -1145,6 +1145,9 @@
/* Define to rpl_localtime if the replacement function should be used. */
#undef localtime
+/* Define to a substitute for the `lstat' function. */
+#undef lstat
+
/* Define to rpl_malloc if the replacement function should be used. */
#undef malloc
@@ -1194,6 +1197,9 @@
/* Define as a signed type of the same size as size_t. */
#define ssize_t int
+/* Define to a substitute for the stat function. */
+#undef stat
+
/* Define to rpl_tzset if the wrapper function should be used. */
#undef tzset
File [changed]: stamp-chi
Url: https://ccvs.cvshome.org/source/browse/ccvs/windows-NT/stamp-chi?r1=1.60&r2=1.61
Delta lines: +6 -0
-------------------
--- stamp-chi 24 May 2005 16:38:08 -0000 1.60
+++ stamp-chi 24 May 2005 21:05:59 -0000 1.61
@@ -1145,6 +1145,9 @@
/* Define to rpl_localtime if the replacement function should be used. */
#undef localtime
+/* Define to a substitute for the `lstat' function. */
+#undef lstat
+
/* Define to rpl_malloc if the replacement function should be used. */
#undef malloc
@@ -1194,6 +1197,9 @@
/* Define as a signed type of the same size as size_t. */
#define ssize_t int
+/* Define to a substitute for the stat function. */
+#undef stat
+
/* Define to rpl_tzset if the wrapper function should be used. */
#undef tzset