From: Ossama Othman Date: Wed, 25 Jul 2001 23:20:15 +0000 (+0000) Subject: From Thomas Poindessous X-Git-Tag: release-1-4d~100 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4a2772406577a1f2c8002ffe6386321c4b4fb43;p=thirdparty%2Flibtool.git From Thomas Poindessous * ltmain.in (pic_mode): Added missing quotes around shell variable in "if test" conditional. From Peter Moulder * ltmain.in (xform): Add support for pre-processed (e.g. `*.{i,ii}' sources). * THANKS: Added Albert Chin-A-Young. --- diff --git a/ChangeLog b/ChangeLog index 2d412c31a..4665817cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2001-07-25 Ossama Othman + + From Thomas Poindessous + * ltmain.in (pic_mode): Added missing quotes around shell + variable in "if test" conditional. + + From Peter Moulder + * ltmain.in (xform): Add support for pre-processed + (e.g. `*.{i,ii}' sources). + 2001-07-25 Gary V. Vaughan From Steve Ellcey : @@ -321,7 +331,7 @@ 2001-06-25 Gary V. Vaughan - * THANKS: Aded Albert Chin-A-Young. + * THANKS: Added Albert Chin-A-Young. * libtool.m4 (IFS): When IFS is changed to split a string for examination in a loop, restore it inside the loop as well as diff --git a/ltmain.in b/ltmain.in index 70efb3c38..97f4091f6 100644 --- a/ltmain.in +++ b/ltmain.in @@ -461,7 +461,7 @@ if test -z "$show_help"; then # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo - xform='[cCFSfmso]' + xform='[cCFSifmso]' case $libobj in *.ada) xform=ada ;; *.adb) xform=adb ;; @@ -469,6 +469,7 @@ if test -z "$show_help"; then *.asm) xform=asm ;; *.c++) xform=c++ ;; *.cc) xform=cc ;; + *.ii) xform=ii ;; *.class) xform=class ;; *.cpp) xform=cpp ;; *.cxx) xform=cxx ;; @@ -562,7 +563,7 @@ if test -z "$show_help"; then pic_mode=default ;; esac - if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi