Author: darcy
Date: Tue Nov 24 15:59:27 2015
New Revision: 620

Log:
Strings should always be unsigned characters.  I feel that it is a weakness
of the C standard that they are not so by default.

Modified:
   trunk/module/setup.py

Modified: trunk/module/setup.py
==============================================================================
--- trunk/module/setup.py       Tue Nov 24 10:27:02 2015        (r619)
+++ trunk/module/setup.py       Tue Nov 24 15:59:27 2015        (r620)
@@ -87,7 +87,7 @@
 library_dirs = [get_python_lib(), pg_config('libdir')]
 define_macros = [('PYGRESQL_VERSION', version)]
 undef_macros = []
-extra_compile_args = ['-O2', '-Wall', '-Werror']
+extra_compile_args = ['-O2', '-Wall', '-Werror', '-funsigned-char']
 
 
 class build_pg_ext(build_ext):
_______________________________________________
PyGreSQL mailing list
[email protected]
https://mail.vex.net/mailman/listinfo.cgi/pygresql

Reply via email to