From 374bd07462a69477d892bf9d7f0b7b61e0847b9c Mon Sep 17 00:00:00 2001 From: Christopher Chavez Date: Sun, 29 Nov 2020 20:39:08 -0600 Subject: [PATCH] myConfig: add ability to define HAVE_INTTYPES_H --- myConfig | 1 + 1 file changed, 1 insertion(+) diff --git a/myConfig b/myConfig index 6260866b..bbea2c31 100755 --- a/myConfig +++ b/myConfig @@ -66,6 +66,7 @@ $macro[1]->{WINARCH} = $win_arch; # $define{'USE_PROTOTYPE'} = 1 if ($Config{'prototype'}); +$define{'HAVE_INTTYPES_H'} = 1 if ($Config{'i_inttypes'}); $define{'HAVE_UNISTD_H'} = 1 if ($Config{'i_unistd'}); $define{'HAVE_SYS_SELECT_H'} = 1 if ($Config{'i_sysselct'}); $define{'NO_STDLIB_H'} = 1 unless ($Config{'i_stdlib'});