Define HAVE_SSIZE_T as 1 in CMake builds for consistency

It is defined as 1, and not as nothing, in configure-generated setup.h
and some projects, e.g. wxPython, rely on this, so do it in the same way
when using configure for consistency.

Closes #23021.
This commit is contained in:
Vadim Zeitlin 2022-12-05 23:20:47 +01:00
parent 0f54ec8b36
commit 934fb8c228

View file

@ -18,7 +18,7 @@
#cmakedefine wxINSTALL_PREFIX "@wxINSTALL_PREFIX@"
/* Define if ssize_t type is available. */
#cmakedefine HAVE_SSIZE_T
#cmakedefine HAVE_SSIZE_T 1
/* Define if you have the ANSI C header files. */
#cmakedefine STDC_HEADERS 1