annotate libmpx/configure.tgt @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 # -*- shell-script -*-
kono
parents:
diff changeset
2 # Copyright (C) 2014 Free Software Foundation, Inc.
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 # This program is free software; you can redistribute it and/or modify
kono
parents:
diff changeset
5 # it under the terms of the GNU General Public License as published by
kono
parents:
diff changeset
6 # the Free Software Foundation; either version 2 of the License, or
kono
parents:
diff changeset
7 # (at your option) any later version.
kono
parents:
diff changeset
8 #
kono
parents:
diff changeset
9 # This program is distributed in the hope that it will be useful,
kono
parents:
diff changeset
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
kono
parents:
diff changeset
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
kono
parents:
diff changeset
12 # GNU General Public License for more details.
kono
parents:
diff changeset
13 #
kono
parents:
diff changeset
14 # You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
15 # along with this program; if not see <http://www.gnu.org/licenses/>.
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 # This is the target specific configuration file. This is invoked by the
kono
parents:
diff changeset
18 # autoconf generated configure script. Putting it in a separate shell file
kono
parents:
diff changeset
19 # lets us skip running autoconf when modifying target specific information.
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 # Filter out unsupported systems.
kono
parents:
diff changeset
22 LIBMPX_SUPPORTED=no
kono
parents:
diff changeset
23 case "${target}" in
kono
parents:
diff changeset
24 x86_64-*-linux* | i?86-*-linux*)
kono
parents:
diff changeset
25 LIBMPX_SUPPORTED=yes
kono
parents:
diff changeset
26 ;;
kono
parents:
diff changeset
27 *)
kono
parents:
diff changeset
28 ;;
kono
parents:
diff changeset
29 esac