widl-SLTG_Typelib_Support: Fixes for Makefile.in.

This commit is contained in:
Sebastian Lackner 2017-01-19 11:37:50 +01:00
parent 910abaa327
commit 5353b4a5a4

View File

@ -1,4 +1,4 @@
From 1db2c2426a44579d03fc166e19ee4d3b3fcb861b Mon Sep 17 00:00:00 2001
From e7c54c4bc539e61088115e283e22932e423aa346 Mon Sep 17 00:00:00 2001
From: Dmitry Timoshkov <dmitry@baikal.ru>
Date: Wed, 23 Dec 2015 19:37:37 +0800
Subject: widl: Add initial implementation of SLTG typelib generator.
@ -13,7 +13,7 @@ Subject: widl: Add initial implementation of SLTG typelib generator.
create mode 100644 tools/widl/write_sltg.c
diff --git a/tools/widl/Makefile.in b/tools/widl/Makefile.in
index f8111f3..c2f1638 100644
index b47a170e4ca..8eaedc3732e 100644
--- a/tools/widl/Makefile.in
+++ b/tools/widl/Makefile.in
@@ -14,7 +14,8 @@ C_SRCS = \
@ -22,12 +22,12 @@ index f8111f3..c2f1638 100644
widl.c \
- write_msft.c
+ write_msft.c \
+ write_sltg.c \
+ write_sltg.c
LEX_SRCS = parser.l
BISON_SRCS = parser.y
diff --git a/tools/widl/typelib.c b/tools/widl/typelib.c
index 6ac748f..aa3305c 100644
index 6ac748f4041..aa3305c5e52 100644
--- a/tools/widl/typelib.c
+++ b/tools/widl/typelib.c
@@ -249,7 +249,10 @@ void end_typelib(void)
@ -43,7 +43,7 @@ index 6ac748f..aa3305c 100644
static void tlb_read(int fd, void *buf, int count)
diff --git a/tools/widl/typelib.h b/tools/widl/typelib.h
index 18e6cdb..31f4a5a 100644
index 18e6cdbcc56..31f4a5a859f 100644
--- a/tools/widl/typelib.h
+++ b/tools/widl/typelib.h
@@ -85,4 +85,5 @@ enum VARENUM {
@ -53,7 +53,7 @@ index 18e6cdb..31f4a5a 100644
+extern int create_sltg_typelib(typelib_t *typelib);
#endif
diff --git a/tools/widl/widl.c b/tools/widl/widl.c
index a38f917..1180e65 100644
index a38f9170ead..1180e65f009 100644
--- a/tools/widl/widl.c
+++ b/tools/widl/widl.c
@@ -163,7 +163,8 @@ enum {
@ -87,7 +87,7 @@ index a38f917..1180e65 100644
break;
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
new file mode 100644
index 0000000..45cac80
index 00000000000..45cac801e7f
--- /dev/null
+++ b/tools/widl/write_sltg.c
@@ -0,0 +1,558 @@
@ -650,5 +650,5 @@ index 0000000..45cac80
+ return 1;
+}
--
2.6.4
2.11.0