|
From: HAYASHI K. <nul...@cl...> - 2014-02-03 07:43:39
|
HAYASHI Kentaro 2014-02-03 16:40:18 +0900 (Mon, 03 Feb 2014) New Revision: bf9f428058c30b21f164f87cc89b304ef8a3c337 https://github.com/clear-code/cutter/commit/bf9f428058c30b21f164f87cc89b304ef8a3c337 Message: doc: add missing CFLAGS when compiling cutter-scan.c Without this change, make dist fails. Modified files: doc/reference/Makefile.am Modified: doc/reference/Makefile.am (+3 -0) =================================================================== --- doc/reference/Makefile.am 2014-02-03 16:18:31 +0900 (5e45111) +++ doc/reference/Makefile.am 2014-02-03 16:40:18 +0900 (0287ad6) @@ -14,6 +14,9 @@ SOURCE_DIR_OPTIONS= \ `test "$(top_builddir)" != "$(top_srcdir)" && \ echo --source-dir="$(top_builddir)/cutter"` +GTKDOC_CFLAGS = \ + $(GLIB_CFLAGS) + # Extra options to supply to gtkdoc-scan SCAN_OPTIONS = \ --deprecated-guards="CUTTER_DISABLE_DEPRECATED" \ |