1dnl Copyright (C) 2010 Free Software Foundation, Inc. 2dnl This file is free software, distributed under the terms of the GNU 3dnl General Public License. As a special exception to the GNU General 4dnl Public License, this file may be distributed as part of a program 5dnl that contains a configuration script generated by Autoconf, under 6dnl the same distribution terms as the rest of that program. 7 8dnl usage: ACX_LT_HOST_FLAGS([default_flags]) 9dnl Defines and AC_SUBSTs lt_host_flags 10 11 12AC_DEFUN([ACX_LT_HOST_FLAGS], [ 13AC_REQUIRE([AC_CANONICAL_SYSTEM]) 14 15case $host in 16 *-cygwin* | *-mingw*) 17 # 'host' will be top-level target in the case of a target lib, 18 # we must compare to with_cross_host to decide if this is a native 19 # or cross-compiler and select where to install dlls appropriately. 20 if test -n "$with_cross_host" && 21 test x"$with_cross_host" != x"no"; then 22 lt_host_flags='-no-undefined -bindir "$(toolexeclibdir)"'; 23 else 24 lt_host_flags='-no-undefined -bindir "$(bindir)"'; 25 fi 26 ;; 27 *) 28 lt_host_flags=[$1] 29 ;; 30esac 31 32AC_SUBST(lt_host_flags) 33]) 34