diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-03 07:18:18 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-03 07:18:18 +0000 |
commit | 0e956fc164b97347279045e60033e6f2f176df3b (patch) | |
tree | be9515a9bae85c641ce8c8756d378eb367614c4c /make/bison.mk | |
parent | 2aaceb3dd6b542912a144d0c7860048091aedf4b (diff) |
Add support for enabling use of libintl.
Add support for libstd++ in full locale mode, and remove the need for
config hacks when using uClibc stub locale support.
TODO --
gdb intl support is still broken.
uClibc should auto-download the pregenerated locale data
Diffstat (limited to 'make/bison.mk')
-rw-r--r-- | make/bison.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/bison.mk b/make/bison.mk index 2803cdccb..f1dbf4607 100644 --- a/make/bison.mk +++ b/make/bison.mk @@ -22,6 +22,7 @@ $(BISON_DIR)/.unpacked: $(DL_DIR)/$(BISON_SOURCE) $(BISON_DIR)/.configured: $(BISON_DIR)/.unpacked (cd $(BISON_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ + gt_cv_func_gnugettext2_libintl=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ @@ -36,7 +37,7 @@ $(BISON_DIR)/.configured: $(BISON_DIR)/.unpacked --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info \ - --disable-nls \ + $(DISABLE_NLS) \ ); touch $(BISON_DIR)/.configured |