Author: rleigh
Date: Thu Jun 15 06:57:43 2017
New Revision: 1798795
URL: http://svn.apache.org/viewvc?rev=1798795&view=rev
Log:
autoconf: Correct typed size fallback signedness
Modified:
xerces/c/trunk/configure.ac
Modified: xerces/c/trunk/configure.ac
URL:
http://svn.apache.org/viewvc/xerces/c/trunk/configure.ac?rev=1798795&r1=1798794&r2=1798795&view=diff
==============================================================================
--- xerces/c/trunk/configure.ac (original)
+++ xerces/c/trunk/configure.ac Thu Jun 15 06:57:43 2017
@@ -475,11 +475,11 @@ fi
AS_IF([test x$ac_cv_type_size_t = xyes],
AC_DEFINE([XERCES_SIZE_T], [size_t], [Define as the appropriate size_t
type]),
- AC_DEFINE([XERCES_SIZE_T], [long], [Define as the appropriate size_t
type]))
+ AC_DEFINE([XERCES_SIZE_T], [unsigned long], [Define as the appropriate
size_t type]))
AS_IF([test x$ac_cv_type_ssize_t = xyes],
AC_DEFINE([XERCES_SSIZE_T], [ssize_t], [Define as the appropriate
ssize_t type]),
- AC_DEFINE([XERCES_SSIZE_T], [unsigned long], [Define as the appropriate
ssize_t type]))
+ AC_DEFINE([XERCES_SSIZE_T], [long], [Define as the appropriate ssize_t
type]))
AS_IF([test x$ac_cv_cxx_have_namespaces = xyes],
AC_DEFINE([XERCES_HAS_CPP_NAMESPACE], 1, [Define if namespaces is
supported by the compiler]))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]