1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/tools/b43-tools/patches/100-b43-asm-fix-compile-error-undefined-reference-to-yyd.patch
Felix Fietkau fae9f5f28f mac80211: update to 2013-02-22 from trunk + backports
Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 36470
2013-04-28 12:37:09 +00:00

28 lines
778 B
Diff

--- a/assembler/Makefile
+++ b/assembler/Makefile
@@ -30,7 +30,7 @@ BIN = b43-asm.bin
SRCS = parser.c scanner.c main.c initvals.c util.c args.c
# YACC related CFLAGS
-CFLAGS += -DYYSTYPE="void *" -DYYERROR_VERBOSE -DYYDEBUG -DYYENABLE_NLS=0 -DYYLTYPE_IS_TRIVIAL=0 -Wno-unused
+CFLAGS += -DYYSTYPE="void *" -DYYERROR_VERBOSE -DYYDEBUG=1 -DYYENABLE_NLS=0 -DYYLTYPE_IS_TRIVIAL=0 -Wno-unused
.SUFFIXES:
.PHONY: all install clean distclean
diff --git a/assembler/main.c b/assembler/main.c
index afca996..a62a15e 100644
--- a/assembler/main.c
+++ b/assembler/main.c
@@ -1260,7 +1260,7 @@ static void initialize(void)
{
INIT_LIST_HEAD(&infile.sl);
INIT_LIST_HEAD(&infile.ivals);
-#ifdef YYDEBUG
+#if YYDEBUG
if (IS_INSANE_DEBUG)
yydebug = 1;
else
--
1.7.10.4