mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 21:37:10 +02:00
[tools] bison: fix compilation with stub intl header
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25869 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7eeced458c
commit
d8913862bf
15
tools/bison/patches/010-intl-stub-compat.patch
Normal file
15
tools/bison/patches/010-intl-stub-compat.patch
Normal file
@ -0,0 +1,15 @@
|
||||
--- a/src/main.c
|
||||
+++ b/src/main.c
|
||||
@@ -57,9 +57,9 @@ main (int argc, char *argv[])
|
||||
{
|
||||
program_name = argv[0];
|
||||
setlocale (LC_ALL, "");
|
||||
- (void) bindtextdomain (PACKAGE, LOCALEDIR);
|
||||
- (void) bindtextdomain ("bison-runtime", LOCALEDIR);
|
||||
- (void) textdomain (PACKAGE);
|
||||
+ bindtextdomain (PACKAGE, LOCALEDIR);
|
||||
+ bindtextdomain ("bison-runtime", LOCALEDIR);
|
||||
+ textdomain (PACKAGE);
|
||||
|
||||
uniqstrs_new ();
|
||||
|
Loading…
Reference in New Issue
Block a user