[llvm-commits] CVS: llvm/autoconf/aclocal.m4
Brian Gaeke
gaeke at cs.uiuc.edu
Tue Nov 18 00:20:01 PST 2003
Changes in directory llvm/autoconf:
aclocal.m4 updated: 1.9 -> 1.10
---
Log message:
Fix breakage caused by typos. Use 3-arg form of AC_DEFINE.
---
Diffs of the changes: (+6 -6)
Index: llvm/autoconf/aclocal.m4
diff -u llvm/autoconf/aclocal.m4:1.9 llvm/autoconf/aclocal.m4:1.10
--- llvm/autoconf/aclocal.m4:1.9 Mon Nov 17 13:46:01 2003
+++ llvm/autoconf/aclocal.m4 Tue Nov 18 00:19:27 2003
@@ -6251,13 +6251,13 @@
[
AC_LANG_SAVE
AC_LANG_C
- oldcflags=${CFLAGS}
- CFLAGS="${CFLAGS} -Wl,-R."
- AC_LINK_IFELSE([int main() { return 0;}],[ac_cv_link_use_r=yes],[ac_cv_link_se_r=no])
- CFLAGS=${oldcflags}
+ oldcflags="$CFLAGS"
+ CFLAGS="$CFLAGS -Wl,-R."
+ AC_LINK_IFELSE([int main() { return 0; }],[ac_cv_link_use_r=yes],[ac_cv_link_use_r=no])
+ CFLAGS="$oldcflags"
AC_LANG_RESTORE
- if test "$ac_cv_link_use_r = yes"
+ if test "$ac_cv_link_use_r" = yes
then
- AC_DEFINE([HAVE_LINK_R],[1])
+ AC_DEFINE([HAVE_LINK_R],[1],[Define if you can use -Wl,-R. to pass -R. to the linker, in order to add the current directory to the dynamic linker search path.])
fi
])
More information about the llvm-commits
mailing list