From 5df45e91659ba611b6e6544d0afc742c33846c29 Mon Sep 17 00:00:00 2001 From: lahiker42 Date: Mon, 9 Feb 2009 03:31:13 +0000 Subject: [PATCH] try to fix cygwin build issue git-svn-id: https://protobuf-c.googlecode.com/svn/trunk@163 00440858-1255-0410-a3e6-75ea37f81c3a --- ChangeLog | 3 ++- configure.ac | 2 +- src/test/Makefile.am | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 94a1960..ef8751b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/configure.ac b/configure.ac index 1329e4b..a7cf2b4 100644 --- a/configure.ac +++ b/configure.ac @@ -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 diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 43a702c..356252e 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -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 \