diff options
author | Michael Widenius <monty@askmonty.org> | 2011-10-26 15:24:07 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-10-26 15:24:07 +0300 |
commit | 9292953d5ad169a8beda9c1475d28b597f6a80b2 (patch) | |
tree | 01030d29d0988923d69beed56a06fe85b4dee89d /storage/oqgraph | |
parent | 08115a80e5c5c150ff39813e61f57619a323fa53 (diff) | |
download | mariadb-git-9292953d5ad169a8beda9c1475d28b597f6a80b2.tar.gz |
Fixed that oqgraph and libmysqld/examples compiles on OpenSuse 11.4
.bzrignore:
Ignore generated file emacs.h
libmysqld/CMakeLists.txt:
Remove direct usage of 'dbug' library
This fixes that 'BUILD/compile-dist' works
storage/oqgraph/CMakeLists.txt:
Remove compiler option '-fno-rtti' as BOOST requires this
Diffstat (limited to 'storage/oqgraph')
-rw-r--r-- | storage/oqgraph/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/oqgraph/CMakeLists.txt b/storage/oqgraph/CMakeLists.txt index 91704d75750..35a105f4baa 100644 --- a/storage/oqgraph/CMakeLists.txt +++ b/storage/oqgraph/CMakeLists.txt @@ -18,6 +18,7 @@ IF(BOOST_OK) ELSE(MSVC) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated") STRING(REPLACE "-fno-exceptions" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) + STRING(REPLACE "-fno-rtti" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) STRING(REPLACE "-fno-implicit-templates" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) ENDIF(MSVC) |