]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.0.0588: MorphOS build is broken v9.0.0588
author=?UTF-8?q?Ola=20S=C3=B6der?= <rolfkopman@gmail.com>
Sun, 25 Sep 2022 18:36:38 +0000 (19:36 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 25 Sep 2022 18:36:38 +0000 (19:36 +0100)
Problem:    MorphOS build is broken.
Solution:   Add "-lm" to LDFLAGS and "-noixemul" to CFLAGS. (Ola Söder,
            closes #11222)

src/Make_ami.mak
src/version.c

index dd674dc61613708ea2d95700f9bd5ff1e12d1080..77ec32cfcb5ea6b852ec72ad8bcd685f084fd3ae 100644 (file)
@@ -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
index 8c9cc5cd797fd58a976bb0fa2b135414f1b72620..b0f53ab262681b4da94f0aff6f4b8ff2c70a6cfe 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    588,
 /**/
     587,
 /**/