Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/marbl/gingr
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Ondov committed Feb 5, 2015
2 parents 8e63e2c + 60fbd9c commit eea11e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ then
fi

AC_LANG(C++)
CPPFLAGS="-I$with_harvest/include -I$with_protobuf/include -I$with_capnp/include"
CPPFLAGS="-std=c++11 -I$with_harvest/include -I$with_protobuf/include -I$with_capnp/include"

AC_CHECK_HEADER(google/protobuf/stubs/common.h, [result=1], [result=0])

Expand All @@ -33,14 +33,14 @@ AC_CHECK_HEADER(capnp/serialize.h, [result2=1], [result2=0])

if test $result2 == 0
then
echo AC_MSG_ERROR([Cap'n Proto headers not found.])
AC_MSG_ERROR([Cap'n Proto headers not found.])
fi

AC_CHECK_HEADER(harvest/HarvestIO.h, [result=1], [result=0])

if test $result == 0
then
echo AC_MSG_ERROR([Harvest not found.])
AC_MSG_ERROR([Harvest not found.])
fi

AC_CHECK_HEADER(zlib.h, [result=1], [result=0])
Expand Down

0 comments on commit eea11e1

Please sign in to comment.