diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2012-08-22 05:00:32 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2012-08-22 05:00:32 (GMT) |
commit | edf83e5d1f1e38288cecba33bb7e6b11729050be (patch) | |
tree | c039028a0058d1a87ecdb2945f1e396585387194 /m4/ltoptions.m4 | |
parent | e53af0ed745a7bec1795681c473ba54025814fd5 (diff) | |
download | hdf5-edf83e5d1f1e38288cecba33bb7e6b11729050be.zip hdf5-edf83e5d1f1e38288cecba33bb7e6b11729050be.tar.gz hdf5-edf83e5d1f1e38288cecba33bb7e6b11729050be.tar.bz2 |
[svn-r22706] Updated autotools: autoconf 2.69, automake 1.12.3, m4 1.4.16, libtool 2.4.2
Tested THG machines.
Diffstat (limited to 'm4/ltoptions.m4')
-rw-r--r-- | m4/ltoptions.m4 | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/m4/ltoptions.m4 b/m4/ltoptions.m4 index 17cfd51..5d9acd8 100644 --- a/m4/ltoptions.m4 +++ b/m4/ltoptions.m4 @@ -326,9 +326,24 @@ dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], - [AS_HELP_STRING([--with-pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [pic_mode="$withval"], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) |