diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-27 22:25:28 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-02-01 19:32:43 +0100 |
commit | 0a40d0191ae47b04bddeab9a08c3394b0b1b56bd (patch) | |
tree | d07ea9c15e606618483fc16210d75814042c8f84 /package/uclibc/0.9.33.2/0068-Fix-getopt-implementations-conditional-compilation.patch | |
parent | 1a2225427522be13bf8287e2a4fcf4897884c0fc (diff) | |
download | buildroot-0a40d0191ae47b04bddeab9a08c3394b0b1b56bd.tar.gz buildroot-0a40d0191ae47b04bddeab9a08c3394b0b1b56bd.zip |
uclibc: remove 0.9.33 version
The upstream project is dead, the 0.9.33 version requires tons of
patches, and uclibc-ng has now successfully replaced uclibc. It is
time to get rid of the 0.9.33 version.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/uclibc/0.9.33.2/0068-Fix-getopt-implementations-conditional-compilation.patch')
-rw-r--r-- | package/uclibc/0.9.33.2/0068-Fix-getopt-implementations-conditional-compilation.patch | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/package/uclibc/0.9.33.2/0068-Fix-getopt-implementations-conditional-compilation.patch b/package/uclibc/0.9.33.2/0068-Fix-getopt-implementations-conditional-compilation.patch deleted file mode 100644 index 18f6a9fe66..0000000000 --- a/package/uclibc/0.9.33.2/0068-Fix-getopt-implementations-conditional-compilation.patch +++ /dev/null @@ -1,58 +0,0 @@ -From 5184289b9f453b1e160fbfd2f0922e5ed586d910 Mon Sep 17 00:00:00 2001 -From: Max Filippov <jcmvbkbc@gmail.com> -Date: Tue, 17 Mar 2015 02:06:52 +0300 -Subject: [PATCH] Fix getopt implementations conditional compilation - -Currently there's no way to disable getsubopt: either GNU or SUSv3 -getsubopt is always built. - -Properly exclude SUSv3 getsubopt implementation when GNU getopt is -selected. -Exclude GNU getsubopt when SUSv3 getopt is selected. Honor getopt_long -configuration. - -This brings UCLIBC_HAS_GNU_GETOPT, UCLIBC_HAS_GNU_GETSUBOPT and -UCLIBC_HAS_GETOPT_LONG handling in sync with uClibc and uClibc-ng tips. - -Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> ---- - libc/unistd/Makefile.in | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -diff --git a/libc/unistd/Makefile.in b/libc/unistd/Makefile.in -index 2704177..ec51631 100644 ---- a/libc/unistd/Makefile.in -+++ b/libc/unistd/Makefile.in -@@ -19,18 +19,18 @@ CSRC := $(filter-out __exec_alloc.c,$(CSRC)) - endif - - ifeq ($(UCLIBC_HAS_GNU_GETOPT),y) --CSRC := $(filter-out getopt-susv3.c getopt_long-simple.c,$(CSRC)) -+ CSRC := $(filter-out getopt-susv3.c getsubopt-susv3.c getopt_long-simple.c,$(CSRC)) -+ ifneq ($(UCLIBC_HAS_GNU_GETSUBOPT),y) -+ CSRC := $(filter-out getsubopt.c,$(CSRC)) -+ endif - else --CSRC := $(filter-out getopt.c,$(CSRC)) --ifneq ($(UCLIBC_HAS_GETOPT_LONG),y) --CSRC := $(filter-out getopt_long-simple.c,$(CSRC)) --endif --endif -- --ifeq ($(UCLIBC_HAS_GNU_GETSUBOPT),y) --CSRC := $(filter-out getsubopt-susv3.c,$(CSRC)) --else --CSRC := $(filter-out getsubopt.c,$(CSRC)) -+ CSRC := $(filter-out getopt.c getsubopt.c,$(CSRC)) -+ ifneq ($(UCLIBC_HAS_GETOPT_LONG),y) -+ CSRC := $(filter-out getopt_long-simple.c,$(CSRC)) -+ endif -+ ifneq ($(UCLIBC_HAS_GNU_GETSUBOPT),y) -+ CSRC := $(filter-out getsubopt-susv3.c,$(CSRC)) -+ endif - endif - - ifneq ($(UCLIBC_SUSV3_LEGACY),y) --- -1.8.1.4 - |