Commit a6f8a89d authored by Nathan Smith's avatar Nathan Smith Committed by Jordan DeLong

Add optional description which complains on newer versions of autoconf

Summary: https://github.com/facebook/folly/pull/22

Test Plan: none

Reviewed By: andrewjcg@fb.com

FB internal diff: D683791
parent 9a90a895
...@@ -52,8 +52,8 @@ AC_TYPE_SIZE_T ...@@ -52,8 +52,8 @@ AC_TYPE_SIZE_T
AC_HEADER_TIME AC_HEADER_TIME
AC_C_VOLATILE AC_C_VOLATILE
AC_CHECK_TYPE([__int128], AC_CHECK_TYPE([__int128],
[AC_DEFINE([HAVE_INT128_T], [1])], [AC_DEFINE([HAVE_INT128_T], [1], [Define if __int128 exists])],
[AC_DEFINE([HAVE_INT128_T], [0])]) [AC_DEFINE([HAVE_INT128_T], [0], [Define if __int128 does not exist])])
AC_CHECK_TYPES([ptrdiff_t]) AC_CHECK_TYPES([ptrdiff_t])
# Checks for library functions. # Checks for library functions.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment