diff options
author | Tom Tromey <tromey@redhat.com> | 2009-03-18 23:33:26 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-03-18 23:33:26 +0000 |
commit | dc448a7b9ba635d8a5c4f5beeb52681ba1d4098a (patch) | |
tree | 2487bc1d09b2b27eb689ab80c0b521fb5cb03f54 /Makefile.def | |
parent | 02b1cb404ae0993f5a5cef356c63ab11698fb7ab (diff) | |
download | gdb-dc448a7b9ba635d8a5c4f5beeb52681ba1d4098a.zip gdb-dc448a7b9ba635d8a5c4f5beeb52681ba1d4098a.tar.gz gdb-dc448a7b9ba635d8a5c4f5beeb52681ba1d4098a.tar.bz2 |
* configure: Rebuild.
* configure.ac (host_libs): Add libiconv.
* Makefile.in: Rebuild.
* Makefile.def (host_modules): Add libiconv.
(configure-gdb, all-gdb): Depend on libiconv.
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.def b/Makefile.def index fee4dda..a0a5266 100644 --- a/Makefile.def +++ b/Makefile.def @@ -94,6 +94,14 @@ host_modules= { module= libcpp; bootstrap=true; }; host_modules= { module= libdecnumber; bootstrap=true; }; host_modules= { module= libgui; }; host_modules= { module= libiberty; bootstrap=true; }; +// We abuse missing to avoid installing anything for libiconv. +host_modules= { module= libiconv; + extra_configure_flags='--disable-shared'; + no_install= true; + missing= install-info; + missing= install-pdf; + missing= install-html; + missing= install-info; }; host_modules= { module= libtool; }; host_modules= { module= m4; }; host_modules= { module= make; }; @@ -339,7 +347,11 @@ dependencies = { module=configure-cloog; on=all-ppl; }; dependencies = { module=configure-gdb; on=all-intl; }; dependencies = { module=configure-gdb; on=configure-sim; }; dependencies = { module=configure-gdb; on=all-bfd; }; +// Depend on all-libiconv so that configure checks for iconv +// functions will work. +dependencies = { module=configure-gdb; on=all-libiconv; }; dependencies = { module=all-gdb; on=all-libiberty; }; +dependencies = { module=all-gdb; on=all-libiconv; }; dependencies = { module=all-gdb; on=all-opcodes; }; dependencies = { module=all-gdb; on=all-readline; }; dependencies = { module=all-gdb; on=all-build-bison; }; |