summaryrefslogtreecommitdiff
path: root/guile.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-05-18 14:03:26 +0300
committerEli Zaretskii <eliz@gnu.org>2013-05-18 14:03:26 +0300
commit943c06de479797fcda377c1cb95c644aace14919 (patch)
treebd7598e563b41654adc8ffa1adda04b10d00694b /guile.c
parent171eb419085bde8e1acc7cd0e39cf796d8e91cd9 (diff)
downloadgunmake-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.
Diffstat (limited to 'guile.c')
-rw-r--r--guile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/guile.c b/guile.c
index c1408a7..f5637fd 100644
--- a/guile.c
+++ b/guile.c
@@ -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"