Create workaround for warnings generated by a broken C99 compiler
authorTrond Norbye <trond.norbye@sun.com>
Mon, 5 Oct 2009 22:32:26 +0000 (00:32 +0200)
committerTrond Norbye <trond.norbye@sun.com>
Mon, 5 Oct 2009 22:32:26 +0000 (00:32 +0200)
commit46339bf905fc4f7ce4b0cc91f32a9f4ff2af2430
tree23af4cb5117ffedf24d94626eeab2dd0cbcb935f
parent9e7aa33723f4746b8d4816a7730553891c3079df
Create workaround for warnings generated by a broken C99 compiler

Some of the flags to turn on extra analysis and warnings in gcc contains
various bugs related to struct initializations (see section 6.7.8 in C99)
causing bogus warnings to be generated. Due to the fact that we compile
with warning == error, this is a showstopper for us. We cannot expect all
users to be running the latest compilers, so we have to create the workaround
in our code.
example/Makefile.am
example/interface_v0.c
example/memcached_light.c
example/memcached_light.h [new file with mode: 0644]
libmemcached/protocol/binary_handler.c