]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acspecific.m4 (AC_PATH_XTRA): Use AC_LANG_PROGRAM() as the
authorPavel Roskin <proski@gnu.org>
Tue, 31 Oct 2000 04:47:23 +0000 (04:47 +0000)
committerPavel Roskin <proski@gnu.org>
Tue, 31 Oct 2000 04:47:23 +0000 (04:47 +0000)
        argument to AC_LINK_IFELSE.

ChangeLog
acspecific.m4
lib/autoconf/specific.m4

index d740411bf2e89814635e3be9e05701c6a5943da3..6a66a163cf4ea841e7f597a2e24e1d351d6b5b62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-30  Pavel Roskin  <proski@gnu.org>
+
+       * acspecific.m4 (AC_PATH_XTRA): Use AC_LANG_PROGRAM() as the
+       argument to AC_LINK_IFELSE.
+
 2000-10-30  Pavel Roskin  <proski@gnu.org>
 
        * m4sh.m4 (AS_EXIT): Use "false" for exit code 1, ":" for 0.
index 31df2c0206ace733c9b835c21851137a32c23e53..b4d081f9fd9d21eea2b5e6de039360e32b14ffbe 100644 (file)
@@ -1390,13 +1390,13 @@ dnl FIXME: banish uname from this macro!
     "SunOS 5"*)
       AC_MSG_CHECKING(whether -R must be followed by a space)
       ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
-      AC_LINK_IFELSE([], ac_R_nospace=yes, ac_R_nospace=no)
+      AC_LINK_IFELSE([AC_LANG_PROGRAM()], ac_R_nospace=yes, ac_R_nospace=no)
       if test $ac_R_nospace = yes; then
        AC_MSG_RESULT(no)
        X_LIBS="$X_LIBS -R$x_libraries"
       else
        LIBS="$ac_xsave_LIBS -R $x_libraries"
-       AC_LINK_IFELSE([], ac_R_space=yes, ac_R_space=no)
+       AC_LINK_IFELSE([AC_LANG_PROGRAM()], ac_R_space=yes, ac_R_space=no)
        if test $ac_R_space = yes; then
          AC_MSG_RESULT(yes)
          X_LIBS="$X_LIBS -R $x_libraries"
index 31df2c0206ace733c9b835c21851137a32c23e53..b4d081f9fd9d21eea2b5e6de039360e32b14ffbe 100644 (file)
@@ -1390,13 +1390,13 @@ dnl FIXME: banish uname from this macro!
     "SunOS 5"*)
       AC_MSG_CHECKING(whether -R must be followed by a space)
       ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
-      AC_LINK_IFELSE([], ac_R_nospace=yes, ac_R_nospace=no)
+      AC_LINK_IFELSE([AC_LANG_PROGRAM()], ac_R_nospace=yes, ac_R_nospace=no)
       if test $ac_R_nospace = yes; then
        AC_MSG_RESULT(no)
        X_LIBS="$X_LIBS -R$x_libraries"
       else
        LIBS="$ac_xsave_LIBS -R $x_libraries"
-       AC_LINK_IFELSE([], ac_R_space=yes, ac_R_space=no)
+       AC_LINK_IFELSE([AC_LANG_PROGRAM()], ac_R_space=yes, ac_R_space=no)
        if test $ac_R_space = yes; then
          AC_MSG_RESULT(yes)
          X_LIBS="$X_LIBS -R $x_libraries"