Use -Wno-pointer-sign to silence a lot of warnings.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 18 Apr 2013 19:29:08 +0000 (22:29 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 18 Apr 2013 19:29:08 +0000 (22:29 +0300)
commitccae8fef415be468b473b41b83f02674d2f9445d
treedb093e58d324447513e14f33d235939ff40c5c97
parent9c0284d4455007b6f91ddfbbe713a89853e68b2d
Use -Wno-pointer-sign to silence a lot of warnings.

We liberally assign between SQLCHAR * and char *, which generates a lot of
compiler warnings about different pointer signedness. Seems like a lost
cause to add casts everywhere (and it might not be good for robustness
anyway, because it might mask a bug where the datatype of one side is
changed to a struct or something in the future), so just silence the
warnings.
Makefile.am