Repository: qpid-proton Updated Branches: refs/heads/go1 500fd8853 -> 52a0bec79
PROTON-1356: remove un-necessary codec_shim.h PROTON-1356 reports problems with `go get`, with an error in types.go line 33, pn_types_t not recognized. Not clear if this solves the problem, but types.go was depending on a codec_shim.h file in the go package, which should have included the pn_types_t definition. This shim is no longer needed and has been removed. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/52a0bec7 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/52a0bec7 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/52a0bec7 Branch: refs/heads/go1 Commit: 52a0bec79e5f33cf0a02962490e923306a230c55 Parents: 500fd88 Author: Alan Conway <[email protected]> Authored: Fri Nov 25 15:09:42 2016 -0500 Committer: Alan Conway <[email protected]> Committed: Fri Nov 25 15:21:35 2016 -0500 ---------------------------------------------------------------------- amqp/marshal.go | 2 +- amqp/message.go | 2 +- amqp/types.go | 2 +- amqp/unmarshal.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/52a0bec7/amqp/marshal.go ---------------------------------------------------------------------- diff --git a/amqp/marshal.go b/amqp/marshal.go index 3b4a59e..bce7323 100644 --- a/amqp/marshal.go +++ b/amqp/marshal.go @@ -19,7 +19,7 @@ under the License. package amqp -//#include "codec_shim.h" +// #include <proton/codec.h> import "C" import ( http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/52a0bec7/amqp/message.go ---------------------------------------------------------------------- diff --git a/amqp/message.go b/amqp/message.go index 48a209a..753682e 100644 --- a/amqp/message.go +++ b/amqp/message.go @@ -19,7 +19,7 @@ under the License. package amqp -// #include "codec_shim.h" +// #include <proton/codec.h> // #include <proton/types.h> // #include <proton/message.h> // #include <stdlib.h> http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/52a0bec7/amqp/types.go ---------------------------------------------------------------------- diff --git a/amqp/types.go b/amqp/types.go index d927cc5..bc0859a 100644 --- a/amqp/types.go +++ b/amqp/types.go @@ -19,7 +19,7 @@ under the License. package amqp -//#include "codec_shim.h" +// #include <proton/codec.h> import "C" import ( http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/52a0bec7/amqp/unmarshal.go ---------------------------------------------------------------------- diff --git a/amqp/unmarshal.go b/amqp/unmarshal.go index 6942174..95d4343 100644 --- a/amqp/unmarshal.go +++ b/amqp/unmarshal.go @@ -19,7 +19,7 @@ under the License. package amqp -// #include "codec_shim.h" +// #include <proton/codec.h> import "C" import ( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
