Commit 1e87e4bb authored by Yang Tse's avatar Yang Tse
Browse files

Prevent detection of stdint.h on IRIX systems, even when available.

IRIX MIPSpro 7.4 C++ compiler does not tolerate inclusion of stdint.h
parent 9bd03483
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
#***************************************************************************

# File version for 'aclocal' use. Keep it a single number.
# serial 61
# serial 62


dnl CURL_INCLUDES_ARPA_INET
@@ -121,6 +121,11 @@ curl_includes_inttypes="\
# include <inttypes.h>
#endif
/* includes end */"
  case $host_os in
    irix*)
      ac_cv_header_stdint_h="no"
      ;;
  esac
  AC_CHECK_HEADERS(
    sys/types.h stdint.h inttypes.h,
    [], [], [$curl_includes_inttypes])