diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-03-02 12:29:37 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-03-02 12:29:37 +0200 |
commit | 34a371625b17428aa0e35488499a2a7b69b0da27 (patch) | |
tree | 36bea5761f603245de6e5220f318e532d379dbf5 /mysql/template/Makefile.am | |
parent | e67a19c220db8315914a74be7b3527535e480c87 (diff) |
C++11 support in automake and VC++ projects, portability fixes
Diffstat (limited to 'mysql/template/Makefile.am')
-rw-r--r-- | mysql/template/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql/template/Makefile.am b/mysql/template/Makefile.am index cd3f9b5..b748228 100644 --- a/mysql/template/Makefile.am +++ b/mysql/template/Makefile.am @@ -26,6 +26,10 @@ ODB = @ODB@ ODBFLAGS = @ODBFLAGS@ ODBCPPFLAGS = @ODBCPPFLAGS@ +if HAVE_CXX11 +ODBFLAGS += --std c++11 +endif + test-odb.hxx: test.hxx $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $< ) |