diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-05-18 14:03:26 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-05-18 14:03:26 +0300 |
commit | 943c06de479797fcda377c1cb95c644aace14919 (patch) | |
tree | bd7598e563b41654adc8ffa1adda04b10d00694b | |
parent | 171eb419085bde8e1acc7cd0e39cf796d8e91cd9 (diff) | |
download | gunmake-943c06de479797fcda377c1cb95c644aace14919.tar.gz |
Fix MS-Windows build with Guile.
guile.c: Move inclusion of makeint.h before gnumake.h. This
order must be observed when building Make, because gnumake.h must
be included with GMK_BUILDING_MAKE defined, which makeint.h
already does. Otherwise, the linker will look for, and fail to
find, gmk_* functions in some external dynamic library.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | guile.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2013-05-18 Eli Zaretskii <eliz@gnu.org> + + * guile.c: Move inclusion of makeint.h before gnumake.h. This + order must be observed when building Make, because gnumake.h must + be included with GMK_BUILDING_MAKE defined, which makeint.h + already does. Otherwise, the linker will look for, and fail to + find, gmk_* functions in some external dynamic library. + 2013-05-17 Eli Zaretskii <eliz@gnu.org> * main.c (prepare_mutex_handle_string): Define conditioned on @@ -14,9 +14,9 @@ A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "makeint.h" #include "gnumake.h" -#include "makeint.h" #include "debug.h" #include "dep.h" #include "variable.h" |