mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Fix Linux/MIPS matching rule.
2009-04-07 Arnaud Patard <apatard@mandriva.com> * libiberty/configure.ac: Fix Linux/MIPS matching rule. * libiberty/configure: Regenerate. From-SVN: r145726
This commit is contained in:
parent
4c8a5bb885
commit
020e3d027a
|
@ -1,3 +1,8 @@
|
||||||
|
2009-04-07 Arnaud Patard <apatard@mandriva.com>
|
||||||
|
|
||||||
|
* libiberty/configure.ac: Fix Linux/MIPS matching rule.
|
||||||
|
* libiberty/configure: Regenerate.
|
||||||
|
|
||||||
2008-03-27 Ian Lance Taylor <iant@google.com>
|
2008-03-27 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
* memmem.c: New file, from gnulib.
|
* memmem.c: New file, from gnulib.
|
||||||
|
|
|
@ -4112,7 +4112,7 @@ if [ "${shared}" = "yes" ]; then
|
||||||
i[34567]86-*-* | x86_64-*-*)
|
i[34567]86-*-* | x86_64-*-*)
|
||||||
PICFLAG=-fpic ;;
|
PICFLAG=-fpic ;;
|
||||||
m68k-*-*) PICFLAG=-fpic ;;
|
m68k-*-*) PICFLAG=-fpic ;;
|
||||||
mips*-*-linux) PICFLAG=-fPIC ;;
|
mips*-*-linux*) PICFLAG=-fPIC ;;
|
||||||
powerpc*-*-aix*) ;;
|
powerpc*-*-aix*) ;;
|
||||||
powerpc*-*-*) PICFLAG=-fPIC ;;
|
powerpc*-*-*) PICFLAG=-fPIC ;;
|
||||||
sparc*-*-*) case "${CFLAGS}" in
|
sparc*-*-*) case "${CFLAGS}" in
|
||||||
|
|
|
@ -209,7 +209,7 @@ if [[ "${shared}" = "yes" ]]; then
|
||||||
i[[34567]]86-*-* | x86_64-*-*)
|
i[[34567]]86-*-* | x86_64-*-*)
|
||||||
PICFLAG=-fpic ;;
|
PICFLAG=-fpic ;;
|
||||||
m68k-*-*) PICFLAG=-fpic ;;
|
m68k-*-*) PICFLAG=-fpic ;;
|
||||||
mips*-*-linux) PICFLAG=-fPIC ;;
|
mips*-*-linux*) PICFLAG=-fPIC ;;
|
||||||
powerpc*-*-aix*) ;;
|
powerpc*-*-aix*) ;;
|
||||||
powerpc*-*-*) PICFLAG=-fPIC ;;
|
powerpc*-*-*) PICFLAG=-fPIC ;;
|
||||||
sparc*-*-*) case "${CFLAGS}" in
|
sparc*-*-*) case "${CFLAGS}" in
|
||||||
|
|
Loading…
Reference in New Issue