mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[package] broadcom-wl:
- fix compilation against eglibc and glibc (#7521) - unbind device from b43 ssb bridge on boot (#7529) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22007 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
30
package/broadcom-wl/patches/002-ctype.patch
Normal file
30
package/broadcom-wl/patches/002-ctype.patch
Normal file
@@ -0,0 +1,30 @@
|
||||
--- a/shared/Makefile
|
||||
+++ b/shared/Makefile
|
||||
@@ -19,7 +19,7 @@ LDFLAGS += -L.
|
||||
AR=ar
|
||||
RANLIB=ranlib
|
||||
|
||||
-OBJS := shutils.o wl.o wl_linux.o linux_timer.o
|
||||
+OBJS := shutils.o wl.o wl_linux.o linux_timer.o ctype.o
|
||||
all: libshared.a
|
||||
|
||||
clean:
|
||||
--- /dev/null
|
||||
+++ b/shared/ctype.c
|
||||
@@ -0,0 +1,16 @@
|
||||
+#include <features.h>
|
||||
+
|
||||
+#ifndef __UCLIBC__
|
||||
+extern void **__ctype_b_loc();
|
||||
+extern void **__ctype_tolower_loc();
|
||||
+
|
||||
+void *__ctype_b;
|
||||
+void *__ctype_tolower;
|
||||
+
|
||||
+static void init(void) __attribute__((constructor));
|
||||
+static void init(void)
|
||||
+{
|
||||
+ __ctype_b = *__ctype_b_loc();
|
||||
+ __ctype_tolower = *__ctype_tolower_loc();
|
||||
+}
|
||||
+#endif
|
||||
Reference in New Issue
Block a user