comparison libffi/configure.ac @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 dnl Process this with autoconf to create configure 1 dnl Process this with autoconf to create configure
2 2
3 AC_PREREQ(2.64)
4 3
5 AC_INIT([libffi], [3.99999], [http://github.com/atgreen/libffi/issues]) 4 AC_INIT([libffi], [3.99999], [http://github.com/atgreen/libffi/issues])
6 AC_CONFIG_HEADERS([fficonfig.h]) 5 AC_CONFIG_HEADERS([fficonfig.h])
7 6
8 AM_ENABLE_MULTILIB(, ..) 7 AM_ENABLE_MULTILIB(, ..)
331 [ --enable-purify-safety purify-safe mode], 330 [ --enable-purify-safety purify-safe mode],
332 if test "$enable_purify_safety" = "yes"; then 331 if test "$enable_purify_safety" = "yes"; then
333 AC_DEFINE(USING_PURIFY, 1, [Define this if you are using Purify and want to suppress spurious messages.]) 332 AC_DEFINE(USING_PURIFY, 1, [Define this if you are using Purify and want to suppress spurious messages.])
334 fi) 333 fi)
335 334
335 GCC_WITH_TOOLEXECLIBDIR
336
336 if test -n "$with_cross_host" && 337 if test -n "$with_cross_host" &&
337 test x"$with_cross_host" != x"no"; then 338 test x"$with_cross_host" != x"no"; then
338 toolexecdir='$(exec_prefix)/$(target_alias)' 339 toolexecdir='$(exec_prefix)/$(target_alias)'
339 toolexeclibdir='$(toolexecdir)/lib' 340 case ${with_toolexeclibdir} in
341 no)
342 toolexeclibdir='$(toolexecdir)/lib'
343 ;;
344 *)
345 toolexeclibdir=${with_toolexeclibdir}
346 ;;
347 esac
340 else 348 else
341 toolexecdir='$(libdir)/gcc-lib/$(target_alias)' 349 toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
342 toolexeclibdir='$(libdir)' 350 toolexeclibdir='$(libdir)'
343 fi 351 fi
344 multi_os_directory=`$CC -print-multi-os-directory` 352 multi_os_directory=`$CC -print-multi-os-directory`