diff options
author | frsyuki <frsyuki@5a5092ae-2292-43ba-b2d5-dcab9c1a2731> | 2009-02-15 09:09:57 +0000 |
---|---|---|
committer | frsyuki <frsyuki@5a5092ae-2292-43ba-b2d5-dcab9c1a2731> | 2009-02-15 09:09:57 +0000 |
commit | 48e0274505583affa8546cdffe19761033622aa2 (patch) | |
tree | 13727db8f6ebfe1d75d05b876f405d3dbfc5496f /c | |
parent | 1278eb3c63e2371283e07c0360b044728d72c704 (diff) | |
download | msgpack-python-48e0274505583affa8546cdffe19761033622aa2.tar.gz |
lang/c/msgpack: fixed packaging problem
git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@64 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
Diffstat (limited to 'c')
-rw-r--r-- | c/configure.in | 2 | ||||
-rw-r--r-- | c/pack_inline.h | 2 | ||||
-rw-r--r-- | c/unpack.c | 2 | ||||
-rw-r--r-- | c/unpack_context.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/c/configure.in b/c/configure.in index 4bc7e3e..1cacbc4 100644 --- a/c/configure.in +++ b/c/configure.in @@ -1,4 +1,4 @@ -AC_INIT(pack.h) +AC_INIT(pack.c) AM_INIT_AUTOMAKE(msgpackc, 0.1.0) AC_CONFIG_HEADER(config.h) diff --git a/c/pack_inline.h b/c/pack_inline.h index acd96fa..dd43a20 100644 --- a/c/pack_inline.h +++ b/c/pack_inline.h @@ -18,7 +18,7 @@ #ifndef PACK_INLINE_H__ #define PACK_INLINE_H__ -#include "pack.h" +#include "msgpack/pack.h" typedef msgpack_pack_t* msgpack_pack_context; @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "unpack.h" +#include "msgpack/unpack.h" #include "unpack_context.h" #include <stdlib.h> diff --git a/c/unpack_context.h b/c/unpack_context.h index 7337c9e..d7b0388 100644 --- a/c/unpack_context.h +++ b/c/unpack_context.h @@ -18,7 +18,7 @@ #ifndef UNPACK_CONTEXT_H__ #define UNPACK_CONTEXT_H__ -#include "unpack.h" +#include "msgpack/unpack.h" typedef void* msgpack_object; |