|
From: Kouhei S. <nul...@cl...> - 2014-02-08 08:49:25
|
Kouhei Sutou 2014-02-08 17:49:08 +0900 (Sat, 08 Feb 2014) New Revision: 4846a44fdfc9dadf1a7ee31cac907b51946b335f https://github.com/clear-code/cutter/commit/4846a44fdfc9dadf1a7ee31cac907b51946b335f Message: Add -fexceptions C compiler option It is needed to use C code with C++ exception. Reported by OBATA Akio. Thanks!!! Modified files: configure.ac Modified: configure.ac (+1 -0) =================================================================== --- configure.ac 2014-02-08 17:48:21 +0900 (cf12c2f) +++ configure.ac 2014-02-08 17:49:08 +0900 (e14d22a) @@ -146,6 +146,7 @@ CHECK_BUILD_FLAG([-Wpointer-arith]) CHECK_BUILD_FLAG([-Wcast-align]) CHECK_CFLAG([-Wmissing-declarations]) CHECK_CFLAG([-Wmissing-prototypes]) +CHECK_CFLAG([-fexceptions]) # Checks for headers AC_HEADER_SYS_WAIT |