From: Witchakorn Kamolpornwijit Date: Wed, 28 Sep 2016 20:00:04 +0000 (-0700) Subject: Fix SUPPLY_MISSING_INT128_TRAITS X-Git-Tag: v2016.10.03.00~10 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c85f38c3cc103038251c41dbabe44866d9ad904a;p=folly.git Fix SUPPLY_MISSING_INT128_TRAITS Summary: The original code `AC_DEFINE([FOLLY_SUPPLY_MISSING_INT128_TRAITS...` resulted in defining the constant FOLLY_FOLLY_SUPPLY_MISSING_INT128_TRAITS in folly-config.h. This patch fix the name of the constant so that the name match with what appear in Traits.h. Closes https://github.com/facebook/folly/pull/485 Reviewed By: yfeldblum Differential Revision: D3931349 Pulled By: Orvid fbshipit-source-id: bd7e7d3580d02134d36706bd5836822135232d26 --- diff --git a/folly/configure.ac b/folly/configure.ac index 3786c00e..36c7fc81 100644 --- a/folly/configure.ac +++ b/folly/configure.ac @@ -171,7 +171,7 @@ static_assert( [folly_cv_prog_cc_int128traits=no]) ]) if test "$folly_cv_prog_cc_int128traits" = "no"; then - AC_DEFINE([FOLLY_SUPPLY_MISSING_INT128_TRAITS], [1], [Define if we need the standard integer traits defined for the type `__int128'.]) + AC_DEFINE([SUPPLY_MISSING_INT128_TRAITS], [1], [Define if we need the standard integer traits defined for the type `__int128'.]) fi fi