diff options
-rw-r--r-- | package/firefox/Makefile | 3 | ||||
-rw-r--r-- | package/firefox/patches/patch-xpcom_ds_nsMathUtils_h | 11 | ||||
-rw-r--r-- | target/linux/config/Config.in.bluetooth | 8 | ||||
-rw-r--r-- | target/linux/config/Config.in.misc | 1 | ||||
-rw-r--r-- | target/linux/config/Config.in.nls | 53 | ||||
-rw-r--r-- | target/mips/uclibc.config.big | 8 | ||||
-rw-r--r-- | target/mips/uclibc.config.little | 8 | ||||
-rw-r--r-- | target/x86/uclibc.config | 8 | ||||
-rw-r--r-- | target/x86_64/uclibc.config | 8 |
9 files changed, 43 insertions, 65 deletions
diff --git a/package/firefox/Makefile b/package/firefox/Makefile index 2d37ef8ac..eb6e1255d 100644 --- a/package/firefox/Makefile +++ b/package/firefox/Makefile @@ -19,7 +19,7 @@ PKG_SITES:= http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${PKG_ PKG_NOPARALLEL:= 1 PKG_NEED_CXX:= 1 -PKG_ARCH_DEPENDS:= x86 x86_64 mips native +PKG_ARCH_DEPENDS:= x86 x86_64 native PKG_HOST_DEPENDS:= !netbsd !freebsd !openbsd !cygwin DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.source.tar.bz2 @@ -78,6 +78,7 @@ CONFIGURE_ARGS+= --enable-application=browser \ --disable-mathml \ --disable-jemalloc \ --disable-crashreporter \ + --disable-libjpeg-turbo \ --disable-elf-hack XAKE_FLAGS+= OS_RELEASE="2.6" HOST_CC=$(CC_FOR_BUILD) HOST_LDFLAGS=$(LDFLAGS_FOR_BUILD) diff --git a/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h b/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h new file mode 100644 index 000000000..7c5b42fb6 --- /dev/null +++ b/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h @@ -0,0 +1,11 @@ +--- mozilla-release.orig/xpcom/ds/nsMathUtils.h 2011-07-08 03:15:44.000000000 +0200 ++++ mozilla-release/xpcom/ds/nsMathUtils.h 2011-08-01 14:40:58.343424403 +0200 +@@ -170,7 +170,7 @@ inline NS_HIDDEN_(bool) NS_finite(double + // NOTE: '!!' casts an int to bool without spamming MSVC warning C4800. + return !!_finite(d); + #else +- return finite(d); ++ return isfinite(d); + #endif + } + diff --git a/target/linux/config/Config.in.bluetooth b/target/linux/config/Config.in.bluetooth index 73760d14c..e7fe0cbf1 100644 --- a/target/linux/config/Config.in.bluetooth +++ b/target/linux/config/Config.in.bluetooth @@ -78,7 +78,7 @@ config ADK_KPACKAGE_KMOD_BT_HIDP Interface Device Profile. config ADK_KPACKAGE_KMOD_BT_HCIBTUSB - prompt "kmod-bt-hci-usb............ HCI USB driver" + prompt "kmod-bt-hcibtusb.......... HCI USB driver" tristate default n depends on ADK_KPACKAGE_KMOD_BT @@ -89,7 +89,7 @@ config ADK_KPACKAGE_KMOD_BT_HCIBTUSB USB interface. config ADK_KPACKAGE_KMOD_BT_HCIUART - prompt "kmod-bt-hci-uart........... HCI UART driver" + prompt "kmod-bt-hciuart........... HCI UART driver" tristate default n depends on ADK_KPACKAGE_KMOD_BT @@ -101,13 +101,13 @@ config ADK_KPACKAGE_KMOD_BT_HCIUART adapter and BrainBoxes Bluetooth PC Card. config ADK_KPACKAGE_KMOD_BT_HCIBCM203X - prompt "kmod-bt-hci-bcm203x........ HCI BCM203x USB driver" + prompt "kmod-bt-hcibcm203x........ HCI BCM203x USB driver" tristate default n select ADK_KPACKAGE_KMOD_FW_LOADER select ADK_KPACKAGE_KMOD_BT_HCIBTUSB depends on ADK_KPACKAGE_KMOD_BT - depends on ADK_LINUX_X86 || ADK_LINUX_X86_64 + depends on ADK_TARGET_WITH_USB help Bluetooth HCI BCM203x USB driver. This driver provides the firmware loading mechanism for the Broadcom diff --git a/target/linux/config/Config.in.misc b/target/linux/config/Config.in.misc index a351fa59b..e7891a465 100644 --- a/target/linux/config/Config.in.misc +++ b/target/linux/config/Config.in.misc @@ -111,6 +111,7 @@ config ADK_KPACKAGE_KMOD_EEPROM_93CX6 prompt "kmod-eeprom-93cx6................. 93cx6 eeprom support" tristate depends on ADK_KPACKAGE_KMOD_MAC80211 + select ADK_KERNEL_MISC_DEVICES default n help diff --git a/target/linux/config/Config.in.nls b/target/linux/config/Config.in.nls index c2a93fa06..587d5a37b 100644 --- a/target/linux/config/Config.in.nls +++ b/target/linux/config/Config.in.nls @@ -2,30 +2,16 @@ menu "Native Language support" config ADK_KERNEL_NLS boolean - default y if ADK_TARGET_SYSTEM_FOXBOARD_LX832 - default y if ADK_TARGET_SYSTEM_FOXBOARD_LX416 - default n + default y config ADK_KERNEL_NLS_DEFAULT string default "iso8859-1" -config ADK_KPACKAGE_KMOD_NLS - prompt "kmod-nls.......................... Base native language support" - tristate - depends on !ADK_KERNEL_NLS - default n - help - The base Native Language Support. A number of filesystems - depend on it (e.g. FAT, JOLIET, NT, BEOS filesystems), as well - as the ability of some filesystems to use native languages - (NCP, SMB). - config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_437 prompt "kmod-nls-codepage-437........... Codepage 437 (United States, Canada)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored @@ -40,7 +26,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_737 prompt "kmod-nls-codepage-737........... Codepage 737 (Greek)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored @@ -55,7 +40,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_775 prompt "kmod-nls-codepage-775........... Codepage 775 (Baltic Rim)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored @@ -71,7 +55,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_850 prompt "kmod-nls-codepage-850........... Codepage 850 (Western European Languages)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -88,7 +71,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_852 prompt "kmod-nls-codepage-852........... Codepage 852 (Eastern European Languages)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -106,7 +88,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_855 prompt "kmod-nls-codepage-855........... Codepage 855 (Cyrillic)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -120,7 +101,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_857 prompt "kmod-nls-codepage-857........... Codepage 857 (Turkish)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -134,7 +114,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_860 prompt "kmod-nls-codepage-860........... Codepage 860 (Portuguese)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -148,7 +127,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_861 prompt "kmod-nls-codepage-861........... Codepage 861 (Icelandic)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -162,7 +140,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_862 prompt "kmod-nls-codepage-862........... Codepage 862 (Hebrew)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -176,7 +153,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_863 prompt "kmod-nls-codepage-863........... Codepage 863 (French Canadian)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -191,7 +167,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_864 prompt "kmod-nls-codepage-864........... Codepage 864 (Arabic)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -205,7 +180,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_865 prompt "kmod-nls-codepage-865........... Codepage 865 (Norwegian, Danish)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -220,7 +194,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_866 prompt "kmod-nls-codepage-866........... Codepage 866 (Cyrillic/Russian)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -235,7 +208,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_869 prompt "kmod-nls-codepage-869........... Codepage 869 (Greek)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -249,7 +221,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_874 prompt "kmod-nls-codepage-874........... Codepage 874 (Thai)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -263,7 +234,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_932 prompt "kmod-nls-codepage-932........... Codepage 932 (Japanese)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -279,7 +249,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_936 prompt "kmod-nls-codepage-936........... Codepage 936 (Simplified Chinese)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -294,7 +263,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_949 prompt "kmod-nls-codepage-949........... Codepage 949 (Korean)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -308,7 +276,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_950 prompt "kmod-nls-codepage-950........... Codepage 950 (Traditional Chinese)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -323,7 +290,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_1250 prompt "kmod-nls-codepage-1250.......... Codepage 1250 (Slavic/Central European)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CDROMs @@ -337,7 +303,6 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_1251 prompt "kmod-nls-codepage-1251.......... Codepage 1251 (Bulgarian, Belarusian)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -352,7 +317,6 @@ config ADK_KPACKAGE_KMOD_NLS_ASCII prompt "kmod-nls-ascii.................. ASCII (United States)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help An ASCII NLS module is needed if you want to override the DEFAULT NLS with this very basic charset and don't want any @@ -362,7 +326,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_1 prompt "kmod-nls-iso8859-1.............. NLS ISO 8859-1 (Latin-1; Western European Languages)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -377,7 +340,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_2 prompt "kmod-nls-iso8859-2.............. NLS ISO 8859-2 (Latin-2; Central European Languages)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -391,7 +353,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_3 prompt "kmod-nls-iso8859-3.............. NLS ISO 8859-3 (Latin-3; Esperanto, Galician, Maltese, Turkish)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -404,7 +365,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_4 prompt "kmod-nls-iso8859-4.............. NLS ISO 8859-4 (Latin-4; old Baltic charset)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -417,7 +377,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_5 prompt "kmod-nls-iso8859-5.............. NLS ISO 8859-5 (Cyrillic)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -431,7 +390,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_6 prompt "kmod-nls-iso8859-6.............. NLS ISO 8859-6 (Arabic)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -443,7 +401,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_7 prompt "kmod-nls-iso8859-7.............. NLS ISO 8859-7 (Greek)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -455,7 +412,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_8 prompt "kmod-nls-iso8859-8.............. NLS ISO 8859-8 (Hebrew)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -467,7 +423,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_9 prompt "kmod-nls-iso8859-9.............. NLS ISO 8859-9 (Latin-5; Turkish)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -480,7 +435,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_13 prompt "kmod-nls-iso8859-13............. NLS ISO 8859-13 (Latin-7; Baltic Rim)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -493,7 +447,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_14 prompt "kmod-nls-iso8859-14............. NLS ISO 8859-14 (Latin-8; Celtic)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -507,7 +460,6 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_15 prompt "kmod-nls-iso8859-15............. NLS ISO 8859-15 (Latin-9; Western European Languages with Euro)" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -526,7 +478,6 @@ config ADK_KPACKAGE_KMOD_NLS_KOI8_R prompt "kmod-nls-koi8-r................. NLS KOI8-R (Cryllic for Russian and Bulgarian" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -538,7 +489,6 @@ config ADK_KPACKAGE_KMOD_NLS_KOI8_U prompt "kmod-nls-koi8-u................. NLS KOI8-U (Cyrillic for Russian, Bulgarian and Ukrainian" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -550,7 +500,6 @@ config ADK_KPACKAGE_KMOD_NLS_UTF8 prompt "kmod-nls-utf8................... NLS UTF8" tristate default n - select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs diff --git a/target/mips/uclibc.config.big b/target/mips/uclibc.config.big index 95fa5f687..f192a8f5a 100644 --- a/target/mips/uclibc.config.big +++ b/target/mips/uclibc.config.big @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Version: 0.9.32-rc1 -# Mon Dec 27 23:04:46 2010 +# Version: 0.9.32 +# Mon Aug 1 15:10:02 2011 # # TARGET_alpha is not set # TARGET_arm is not set @@ -28,6 +28,7 @@ TARGET_mips=y # TARGET_vax is not set # TARGET_x86_64 is not set # TARGET_xtensa is not set +# TARGET_c6x is not set # # Target Architecture Features and Options @@ -100,6 +101,7 @@ COMPAT_ATEXIT=y UCLIBC_SUSV3_LEGACY=y # UCLIBC_SUSV3_LEGACY_MACROS is not set UCLIBC_SUSV4_LEGACY=y +# UCLIBC_STRICT_HEADERS is not set # UCLIBC_HAS_STUBS is not set UCLIBC_HAS_SHADOW=y UCLIBC_HAS_PROGRAM_INVOCATION_NAME=y @@ -208,6 +210,7 @@ UCLIBC_HAS_FNMATCH=y UCLIBC_HAS_WORDEXP=y UCLIBC_HAS_NFTW=y UCLIBC_HAS_FTW=y +UCLIBC_HAS_FTS=y UCLIBC_HAS_GLOB=y UCLIBC_HAS_GNU_GLOB=y # UCLIBC_HAS_UTMPX is not set @@ -242,6 +245,7 @@ DOSTRIP=y # SUPPORT_LD_DEBUG is not set # SUPPORT_LD_DEBUG_EARLY is not set # UCLIBC_MALLOC_DEBUGGING is not set +# UCLIBC_HAS_BACKTRACE is not set WARNINGS="-Wall" EXTRA_WARNINGS=y # DOMULTI is not set diff --git a/target/mips/uclibc.config.little b/target/mips/uclibc.config.little index 86b227364..d5d8f1179 100644 --- a/target/mips/uclibc.config.little +++ b/target/mips/uclibc.config.little @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Version: 0.9.32-rc1 -# Fri Dec 31 11:58:18 2010 +# Version: 0.9.32 +# Mon Aug 1 15:09:09 2011 # # TARGET_alpha is not set # TARGET_arm is not set @@ -28,6 +28,7 @@ TARGET_mips=y # TARGET_vax is not set # TARGET_x86_64 is not set # TARGET_xtensa is not set +# TARGET_c6x is not set # # Target Architecture Features and Options @@ -100,6 +101,7 @@ COMPAT_ATEXIT=y UCLIBC_SUSV3_LEGACY=y # UCLIBC_SUSV3_LEGACY_MACROS is not set UCLIBC_SUSV4_LEGACY=y +# UCLIBC_STRICT_HEADERS is not set # UCLIBC_HAS_STUBS is not set UCLIBC_HAS_SHADOW=y UCLIBC_HAS_PROGRAM_INVOCATION_NAME=y @@ -208,6 +210,7 @@ UCLIBC_HAS_FNMATCH=y UCLIBC_HAS_WORDEXP=y UCLIBC_HAS_NFTW=y UCLIBC_HAS_FTW=y +UCLIBC_HAS_FTS=y UCLIBC_HAS_GLOB=y UCLIBC_HAS_GNU_GLOB=y # UCLIBC_HAS_UTMPX is not set @@ -242,6 +245,7 @@ DOSTRIP=y # SUPPORT_LD_DEBUG is not set # SUPPORT_LD_DEBUG_EARLY is not set # UCLIBC_MALLOC_DEBUGGING is not set +# UCLIBC_HAS_BACKTRACE is not set WARNINGS="-Wall" EXTRA_WARNINGS=y # DOMULTI is not set diff --git a/target/x86/uclibc.config b/target/x86/uclibc.config index 1f38a9014..106fc4054 100644 --- a/target/x86/uclibc.config +++ b/target/x86/uclibc.config @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Version: 0.9.32-rc1 -# Mon Dec 27 22:42:21 2010 +# Version: 0.9.32 +# Thu Aug 4 13:48:06 2011 # # TARGET_alpha is not set # TARGET_arm is not set @@ -28,6 +28,7 @@ TARGET_i386=y # TARGET_vax is not set # TARGET_x86_64 is not set # TARGET_xtensa is not set +# TARGET_c6x is not set # # Target Architecture Features and Options @@ -109,6 +110,7 @@ COMPAT_ATEXIT=y UCLIBC_SUSV3_LEGACY=y # UCLIBC_SUSV3_LEGACY_MACROS is not set UCLIBC_SUSV4_LEGACY=y +# UCLIBC_STRICT_HEADERS is not set # UCLIBC_HAS_STUBS is not set UCLIBC_HAS_SHADOW=y UCLIBC_HAS_PROGRAM_INVOCATION_NAME=y @@ -217,6 +219,7 @@ UCLIBC_HAS_FNMATCH=y UCLIBC_HAS_WORDEXP=y UCLIBC_HAS_NFTW=y UCLIBC_HAS_FTW=y +UCLIBC_HAS_FTS=y UCLIBC_HAS_GLOB=y UCLIBC_HAS_GNU_GLOB=y # UCLIBC_HAS_UTMPX is not set @@ -251,6 +254,7 @@ DOSTRIP=y # SUPPORT_LD_DEBUG is not set # SUPPORT_LD_DEBUG_EARLY is not set # UCLIBC_MALLOC_DEBUGGING is not set +# UCLIBC_HAS_BACKTRACE is not set WARNINGS="-Wall" EXTRA_WARNINGS=y # DOMULTI is not set diff --git a/target/x86_64/uclibc.config b/target/x86_64/uclibc.config index cc02e030d..301220414 100644 --- a/target/x86_64/uclibc.config +++ b/target/x86_64/uclibc.config @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Version: 0.9.32-rc1 -# Mon Dec 27 23:00:03 2010 +# Version: 0.9.32 +# Thu Aug 4 13:48:45 2011 # # TARGET_alpha is not set # TARGET_arm is not set @@ -28,6 +28,7 @@ # TARGET_vax is not set TARGET_x86_64=y # TARGET_xtensa is not set +# TARGET_c6x is not set # # Target Architecture Features and Options @@ -92,6 +93,7 @@ COMPAT_ATEXIT=y UCLIBC_SUSV3_LEGACY=y # UCLIBC_SUSV3_LEGACY_MACROS is not set UCLIBC_SUSV4_LEGACY=y +# UCLIBC_STRICT_HEADERS is not set # UCLIBC_HAS_STUBS is not set UCLIBC_HAS_SHADOW=y UCLIBC_HAS_PROGRAM_INVOCATION_NAME=y @@ -200,6 +202,7 @@ UCLIBC_HAS_FNMATCH=y UCLIBC_HAS_WORDEXP=y UCLIBC_HAS_NFTW=y UCLIBC_HAS_FTW=y +UCLIBC_HAS_FTS=y UCLIBC_HAS_GLOB=y UCLIBC_HAS_GNU_GLOB=y # UCLIBC_HAS_UTMPX is not set @@ -233,6 +236,7 @@ DOSTRIP=y # SUPPORT_LD_DEBUG is not set # SUPPORT_LD_DEBUG_EARLY is not set # UCLIBC_MALLOC_DEBUGGING is not set +# UCLIBC_HAS_BACKTRACE is not set WARNINGS="-Wall" EXTRA_WARNINGS=y # DOMULTI is not set |