mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix breakage caused by typos. Use 3-arg form of AC_DEFINE.
llvm-svn: 10062
This commit is contained in:
parent
c5b4c8a319
commit
233a71f1a9
12
autoconf/aclocal.m4
vendored
12
autoconf/aclocal.m4
vendored
@ -6251,13 +6251,13 @@ AC_DEFUN([AC_LINK_USE_R],
|
||||
[
|
||||
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
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user