]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
authorTim Van Holder <tim.van.holder@pandora.be>
Fri, 21 Sep 2001 16:19:09 +0000 (16:19 +0000)
committerTim Van Holder <tim.van.holder@pandora.be>
Fri, 21 Sep 2001 16:19:09 +0000 (16:19 +0000)
  character (u: -> ue) in a code comment.
  (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
  it works.

ChangeLog
lib/autoconf/functions.m4

index bbbe77b2f00186cca48993e3bf0085c323b5c1b2..548549183838d4e6a121c0c83f4840e57da249b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
+
+       * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
+       character (u: -> ue) in a code comment.
+       (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
+       it works.
+
 2001-09-21  Akim Demaille  <akim@epita.fr>
 
        * Makefile.maint (AUTOM4TE): Neutralize autom4te.
index ce1f3cce923bfa7228ac6523dafb55dcf753517b..911d5f07718fad1e2ad94170116a8e3fe338021b 100644 (file)
@@ -623,7 +623,7 @@ AC_DEFUN([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK],
        [ac_cv_func_lstat_dereferences_slashed_symlink],
 [rm -f conftest.sym conftest.file
 echo >conftest.file
-if ln -s conftest.file conftest.sym; then
+if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then
   AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
     [struct stat sbuf;
      /* Linux will dereference the symlink and fail.
@@ -1397,7 +1397,7 @@ fi
 # -------------
 AC_DEFUN([_AC_FUNC_FORK],
   [AC_CACHE_CHECK(for working fork, ac_cv_func_fork_works,
-    [AC_RUN_IFELSE([/* By RΓΌdiger Kuhlmann. */
+    [AC_RUN_IFELSE([/* By Ruediger Kuhlmann. */
       #include <sys/types.h>
       #if HAVE_UNISTD_H
       # include <unistd.h>