diff options
author | Eduardo Chappa <chappa@washington.edu> | 2021-04-17 21:46:47 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2021-04-17 22:03:56 -0600 |
commit | d2ad22272baf7d977d6dac930d149af0cd8982c9 (patch) | |
tree | 659005f73de6d966a7444b9ebce8084fadb7f6ba /configure | |
parent | f6519aa1448e62a757d43e57cabd081ab594dfb1 (diff) | |
download | alpine-d2ad22272baf7d977d6dac930d149af0cd8982c9.tar.xz |
* Add new type SUINT32, as a shorter version of UINT32 for systems that
do not have a proper uint32_t type. SUINT32 is defined by default to
be UINT32, but during compilation the user can define an environment
variable SUINT32 to be, say, unsigned long, and that will make SUINT32
to take that type. This, and the source codem, are the only places
where this is documented. Work in collaboration with professor Martin
Trusler.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -20834,6 +20834,16 @@ cat >>confdefs.h <<_ACEOF _ACEOF +if test -z "$SUINT32" ; then + SUINT32="$uint32" +fi + + +cat >>confdefs.h <<_ACEOF +#define SUINT32 $SUINT32 +_ACEOF + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking argument pointer type of qsort compare function and base" >&5 $as_echo_n "checking argument pointer type of qsort compare function and base... " >&6; } if ${ac_cv_func_qsort_argtype+:} false; then : |