Kouhei Sutou
null+****@clear*****
Wed Sep 11 19:16:22 JST 2013
Kouhei Sutou 2013-09-11 19:16:22 +0900 (Wed, 11 Sep 2013) New Revision: e11dc942f28ce2ffdddcc454ce9a73db59b0d82a https://github.com/mroonga/mroonga/commit/e11dc942f28ce2ffdddcc454ce9a73db59b0d82a Message: Use subdir-objects option in Automake automake 1.14 showes the following warning: test/unit/Makefile.am:24: warning: source file '../../mrn_sys.cpp' is in a subdirectory, test/unit/Makefile.am:24: but option 'subdir-objects' is disabled automake-1.14: warning: possible forward-incompatibility. automake-1.14: At least a source file is in a subdirectory, but the 'subdir-objects' automake-1.14: automake option hasn't been enabled. For now, the corresponding output automake-1.14: object file(s) will be placed in the top-level directory. However, automake-1.14: this behaviour will change in future Automake versions: they will automake-1.14: unconditionally cause object files to be placed in the same subdirectory automake-1.14: of the corresponding sources. automake-1.14: You are advised to start using 'subdir-objects' option throughout your automake-1.14: project, to avoid future incompatibilities. So I use subdir-objects option. See: http://www.gnu.org/software/automake/manual/automake.html#index-subdir_002dobjects Modified files: configure.ac Modified: configure.ac (+1 -1) =================================================================== --- configure.ac 2013-09-10 00:42:23 +0900 (9464291) +++ configure.ac 2013-09-11 19:16:22 +0900 (3500e40) @@ -10,7 +10,7 @@ m4_define([mrn_plugin_version], m4_include(plugin_version)) AC_INIT([mroonga], [mrn_version], [groonga-talk �� lists.sourceforge.net]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE(tar-pax) +AM_INIT_AUTOMAKE([tar-pax subdir-objects]) MRN_VERSION=mrn_version MRN_VERSION_MAJOR=mrn_version_major -------------- next part -------------- HTML����������������������������...Download