projects
/
folly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a90a89
)
Add optional description which complains on newer versions of autoconf
author
Nathan Smith
<nathasm@gmail.com>
Mon, 17 Dec 2012 19:50:05 +0000
(14:50 -0500)
committer
Jordan DeLong
<jdelong@fb.com>
Sat, 19 Jan 2013 00:55:40 +0000
(16:55 -0800)
Summary: https://github.com/facebook/folly/pull/22
Test Plan: none
Reviewed By: andrewjcg@fb.com
FB internal diff:
D683791
folly/configure.ac
patch
|
blob
|
history
diff --git
a/folly/configure.ac
b/folly/configure.ac
index 6d564f9fa95c2b919aa514b27dd83c9450c35447..13efcbe25112c657ae9f244d6b139c255727ade1 100644
(file)
--- a/
folly/configure.ac
+++ b/
folly/configure.ac
@@
-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.