diff options
Diffstat (limited to 'm4/tr1-memory.m4')
-rw-r--r-- | m4/tr1-memory.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/tr1-memory.m4 b/m4/tr1-memory.m4 index d207f1e..5df00a1 100644 --- a/m4/tr1-memory.m4 +++ b/m4/tr1-memory.m4 @@ -14,8 +14,8 @@ tr1_memory=no AC_MSG_CHECKING([for TR1 <memory>]) -CXX_LIBTOOL_LINK_IFELSE( -AC_LANG_SOURCE([[ +CXX_LIBTOOL_LINK_IFELSE([ +AC_LANG_SOURCE([ #include <odb/tr1/memory.hxx> int @@ -24,7 +24,7 @@ main () std::tr1::shared_ptr<int> p (new int (10)); *p = 11; } -]]), +])], [tr1_memory=yes]) if test x"$tr1_memory" = xyes; then |