configure: Add check for __int128_t and __uint128_t types

This commit is contained in:
Stefan Brüns 2016-04-30 00:28:09 +02:00 committed by Uwe Hermann
parent 5ec172d7e9
commit e9869966be
1 changed files with 3 additions and 0 deletions

View File

@ -171,6 +171,9 @@ AS_IF([test "x$sr_cv_have_rpc" = xyes],
# VXI support is only compiled if RPC support was found.
AM_CONDITIONAL([NEED_RPC], [test "x$sr_cv_have_rpc" = xyes])
# Check for compiler support of 128 bit integers
AC_CHECK_TYPES([__int128_t, __uint128_t], [], [], [])
########################
## Hardware drivers ##
########################