changeset 30505:ce8545612296 v9.0.0588

patch 9.0.0588: MorphOS build is broken Commit: https://github.com/vim/vim/commit/4d2073b2610dd6270cc664224dce9524b2a1d758 Author: =?UTF-8?q?Ola=20S=C3=B6der?= <rolfkopman@gmail.com> Date: Sun Sep 25 19:36:38 2022 +0100 patch 9.0.0588: MorphOS build is broken Problem: MorphOS build is broken. Solution: Add "-lm" to LDFLAGS and "-noixemul" to CFLAGS. (Ola S?der, closes #11222)
author Bram Moolenaar <Bram@vim.org>
date Sun, 25 Sep 2022 20:45:03 +0200
parents a726559c0589
children 4cd4e631d655
files src/Make_ami.mak src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/Make_ami.mak
+++ b/src/Make_ami.mak
@@ -68,7 +68,8 @@ ifeq ($(UNM),AROS)
 LDFLAGS = -DHAVE_FSYNC -ldebug
 else
 ifeq ($(UNM),MorphOS)
-LDFLAGS = -ldebug -noixemul
+CFLAGS += -noixemul
+LDFLAGS = -ldebug -lm -noixemul
 endif
 endif
 endif
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    588,
+/**/
     587,
 /**/
     586,