File tree 3 files changed +13
-0
lines changed
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -19563,6 +19563,13 @@ then :
19563
19563
19564
19564
fi
19565
19565
19566
+ ac_fn_cxx_check_header_compile "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default"
19567
+ if test "x$ac_cv_header_stdint_h" = xyes
19568
+ then :
19569
+ printf "%s\n" "#define HAVE_STDINT_H 1" >>confdefs.h
19570
+
19571
+ fi
19572
+
19566
19573
19567
19574
############################################################################
19568
19575
# Data type and math function definitions #
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ AC_COIN_DEBUGLEVEL
52
52
AC_CHECK_HEADERS ( [ windows.h] )
53
53
AC_CHECK_HEADERS ( [ endian.h] )
54
54
AC_CHECK_HEADERS ( [ execinfo.h] )
55
+ AC_CHECK_HEADERS ( [ stdint.h] )
55
56
56
57
# ###########################################################################
57
58
# Data type and math function definitions #
Original file line number Diff line number Diff line change 2
2
// Copyright 2015, Matthew Saltzman and Ted Ralphs
3
3
// Licensed under the Eclipse Public License
4
4
5
+ #include " CoinUtilsConfig.h"
6
+
5
7
#include < algorithm>
6
8
#include < cmath>
7
9
#ifdef __clang__
10
12
#include < cstdio>
11
13
#endif
12
14
#include < cassert>
15
+ #ifdef COINUTILS_HAS_STDINT_H
16
+ #include < stdint.h>
17
+ #endif
13
18
14
19
#include " CoinRational.hpp"
15
20
You can’t perform that action at this time.
0 commit comments