[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r9262 - in /trunk/libc: ChangeLog.eglibc libidn/Makefile option-groups.def option-groups.defaults
- To: commits@xxxxxxxxxx
- Subject: [commits] r9262 - in /trunk/libc: ChangeLog.eglibc libidn/Makefile option-groups.def option-groups.defaults
- From: maxim@xxxxxxxxxx
- Date: Mon, 16 Nov 2009 09:20:43 -0000
Author: maxim
Date: Mon Nov 16 01:20:42 2009
New Revision: 9262
Log:
OPTION_EGLIBC_IDN
* option-groups.def (OPTION_EGLIBC_IDN): New option group.
* option-groups.default (OPTION_EGLIBC_IDN): Set the default.
* libidn/Makefile (libcidn): Handle OPTION_EGLIBC_IDN.
Modified:
trunk/libc/ChangeLog.eglibc
trunk/libc/libidn/Makefile
trunk/libc/option-groups.def
trunk/libc/option-groups.defaults
Modified: trunk/libc/ChangeLog.eglibc
==============================================================================
--- trunk/libc/ChangeLog.eglibc (original)
+++ trunk/libc/ChangeLog.eglibc Mon Nov 16 01:20:42 2009
@@ -1,3 +1,11 @@
+2009-11-16 Maxim Kuvyrkov <maxim@xxxxxxxxxxxxxxxx>
+
+ OPTION_EGLIBC_IDN
+
+ * option-groups.def (OPTION_EGLIBC_IDN): New option group.
+ * option-groups.default (OPTION_EGLIBC_IDN): Set the default.
+ * libidn/Makefile (libcidn): Handle OPTION_EGLIBC_IDN.
+
2009-11-11 Thomas Schwinge <thomas@xxxxxxxxxxxxxxxx>
* configure.in (libc_cv_ssp): Make this a compile-time check. Avoid
Modified: trunk/libc/libidn/Makefile
==============================================================================
--- trunk/libc/libidn/Makefile (original)
+++ trunk/libc/libidn/Makefile Mon Nov 16 01:20:42 2009
@@ -25,8 +25,8 @@
routines = idn-stub
-extra-libs = libcidn
-extra-libs-others = $(extra-libs)
+extra-libs-$(OPTION_EGLIBC_IDN) = libcidn
+extra-libs-others-y = $(extra-libs-y)
libcidn-routines := punycode toutf8 nfkc stringprep rfc3454 profiles idna \
iconvme
Modified: trunk/libc/option-groups.def
==============================================================================
--- trunk/libc/option-groups.def (original)
+++ trunk/libc/option-groups.def Mon Nov 16 01:20:42 2009
@@ -290,6 +290,12 @@
With this option group disabled, the 'glob' function will not
fall back on 'getlogin' to find the user's login name for tilde
expansion when the 'HOME' environment variable is not set.
+
+config OPTION_EGLIBC_IDN
+ bool "International domain names support"
+ help
+ This option group includes the `libcidn' library which
+ provides support for international domain names.
config OPTION_EGLIBC_INET
bool "Networking support"
Modified: trunk/libc/option-groups.defaults
==============================================================================
--- trunk/libc/option-groups.defaults (original)
+++ trunk/libc/option-groups.defaults Mon Nov 16 01:20:42 2009
@@ -22,6 +22,7 @@
OPTION_EGLIBC_FSTAB = y
OPTION_EGLIBC_FTRAVERSE = y
OPTION_EGLIBC_GETLOGIN = y
+OPTION_EGLIBC_IDN = y
OPTION_EGLIBC_INET = y
OPTION_EGLIBC_LIBM = y
OPTION_EGLIBC_LOCALES = y