From: =?UTF-8?q?Ola=20S=C3=B6der?= Date: Sun, 25 Sep 2022 18:36:38 +0000 (+0100) Subject: patch 9.0.0588: MorphOS build is broken X-Git-Tag: v9.0.0588 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d2073b2610dd6270cc664224dce9524b2a1d758;p=thirdparty%2Fvim.git 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) --- diff --git a/src/Make_ami.mak b/src/Make_ami.mak index dd674dc616..77ec32cfcb 100644 --- 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 diff --git a/src/version.c b/src/version.c index 8c9cc5cd79..b0f53ab262 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 588, /**/ 587, /**/