diff options
author | Ted Gould <ted@gould.cx> | 2012-02-17 16:15:25 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-02-17 16:15:25 -0600 |
commit | 52d15e402e4ada9c8f1ee1f4b7e3a9ada473772c (patch) | |
tree | bb80c652ef218150d4f8d7d9b604fccc404ab465 /m4/ltoptions.m4 | |
parent | 09dcfec3e1305ed9ad26df78a9ff6c755ed08ece (diff) | |
parent | 59ade0a5dad1cb85f3576fc89c323a8baceb3a5e (diff) | |
download | ayatana-indicator-datetime-52d15e402e4ada9c8f1ee1f4b7e3a9ada473772c.tar.gz ayatana-indicator-datetime-52d15e402e4ada9c8f1ee1f4b7e3a9ada473772c.tar.bz2 ayatana-indicator-datetime-52d15e402e4ada9c8f1ee1f4b7e3a9ada473772c.zip |
Import upstream version 0.3.90
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]) |