Skip to content

Commit

Permalink
Add optional description which complains on newer versions of autoconf
Browse files Browse the repository at this point in the history
Summary: #22

Test Plan: none

Reviewed By: andrewjcg@fb.com

FB internal diff: D683791
  • Loading branch information
nathasm authored and jdelong committed Jan 19, 2013
1 parent 9a90a89 commit a6f8a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions folly/configure.ac
Expand Up @@ -52,8 +52,8 @@ AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_C_VOLATILE
AC_CHECK_TYPE([__int128],
[AC_DEFINE([HAVE_INT128_T], [1])],
[AC_DEFINE([HAVE_INT128_T], [0])])
[AC_DEFINE([HAVE_INT128_T], [1], [Define if __int128 exists])],
[AC_DEFINE([HAVE_INT128_T], [0], [Define if __int128 does not exist])])
AC_CHECK_TYPES([ptrdiff_t])

# Checks for library functions.
Expand Down

0 comments on commit a6f8a89

Please sign in to comment.