comparison config/lthostflags.m4 @ 68:561a7518be6b

update gcc-4.6
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Sun, 21 Aug 2011 07:07:55 +0900
parents
children
comparison
equal deleted inserted replaced
67:f6334be47118 68:561a7518be6b
1 dnl Copyright (C) 2010 Free Software Foundation, Inc.
2 dnl This file is free software, distributed under the terms of the GNU
3 dnl General Public License. As a special exception to the GNU General
4 dnl Public License, this file may be distributed as part of a program
5 dnl that contains a configuration script generated by Autoconf, under
6 dnl the same distribution terms as the rest of that program.
7
8 dnl usage: ACX_LT_HOST_FLAGS([default_flags])
9 dnl Defines and AC_SUBSTs lt_host_flags
10
11
12 AC_DEFUN([ACX_LT_HOST_FLAGS], [
13 AC_REQUIRE([AC_CANONICAL_SYSTEM])
14
15 case $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 ;;
30 esac
31
32 AC_SUBST(lt_host_flags)
33 ])