Commit 5df45e91 authored by lahiker42's avatar lahiker42

try to fix cygwin build issue


git-svn-id: https://protobuf-c.googlecode.com/svn/trunk@163 00440858-1255-0410-a3e6-75ea37f81c3a
parent 70b8bf87
......@@ -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
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 \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment