mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 22:01:02 +08:00
try to fix cygwin build issue
git-svn-id: https://protobuf-c.googlecode.com/svn/trunk@163 00440858-1255-0410-a3e6-75ea37f81c3a
This commit is contained in:
parent
70b8bf87e8
commit
5df45e9165
@ -27,4 +27,5 @@
|
||||
- service_machgen_invoke was broken. (issue 12)
|
||||
- add RPC system (BETA)
|
||||
- don't segfault when packing NULL strings and messages. (issue 13)
|
||||
|
||||
0.9 [NOT YET RELEASED]
|
||||
- build issue: needed $(EXEEXT) in dependency lists for cygwin
|
||||
|
@ -1,5 +1,5 @@
|
||||
AC_INIT(src/google/protobuf-c/protobuf-c.h)
|
||||
PROTOBUF_C_VERSION=0.8
|
||||
PROTOBUF_C_VERSION=0.9beta0
|
||||
|
||||
AM_INIT_AUTOMAKE(protobuf-c, $PROTOBUF_C_VERSION)
|
||||
PACKAGE=protobuf-c
|
||||
|
@ -26,7 +26,7 @@ example_client_SOURCES = \
|
||||
example-client.c generated-code/test.pb-c.c
|
||||
example_client_LDADD = ../libprotobuf-c.la
|
||||
|
||||
generated-code/test.pb-c.c generated-code/test.pb-c.h: ../protoc-c $(srcdir)/test.proto
|
||||
generated-code/test.pb-c.c generated-code/test.pb-c.h: ../protoc-c$(EXEEXT) $(srcdir)/test.proto
|
||||
mkdir -p generated-code
|
||||
../protoc-c -I$(srcdir) --c_out=generated-code $(srcdir)/test.proto
|
||||
generated-code/test-full.pb-c.c generated-code/test-full.pb-c.h: ../protoc-c $(srcdir)/test-full.proto
|
||||
@ -35,7 +35,7 @@ generated-code/test-full.pb-c.c generated-code/test-full.pb-c.h: ../protoc-c $(s
|
||||
generated-code/test-full.pb.cc generated-code/test-full.pb.h: $(srcdir)/test-full.proto @PROTOC@
|
||||
mkdir -p generated-code
|
||||
@PROTOC@ -I$(srcdir) --cpp_out=generated-code $(srcdir)/test-full.proto
|
||||
generated-code/test-full-cxx-output.inc: cxx-generate-packed-data
|
||||
generated-code/test-full-cxx-output.inc: cxx-generate-packed-data$(EXEEXT)
|
||||
./cxx-generate-packed-data > generated-code/test-full-cxx-output.inc
|
||||
|
||||
BUILT_SOURCES = generated-code/test.pb-c.c generated-code/test.pb-c.h \
|
||||
|
Loading…
x
Reference in New Issue
Block a user