From: Stefan BrĂ¼ns Date: Fri, 29 Apr 2016 22:28:09 +0000 (+0200) Subject: configure: Add check for __int128_t and __uint128_t types X-Git-Tag: libsigrok-0.5.0~401 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=e9869966be62c1d129503aaa0c8770e94f038f8b;hp=5ec172d7e9ed55537b6a152a6b8e98712a2f595e configure: Add check for __int128_t and __uint128_t types --- diff --git a/configure.ac b/configure.ac index 28de40bd..fd1b98da 100644 --- a/configure.ac +++ b/configure.ac @@ -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 ## ########################