From 4d2073b2610dd6270cc664224dce9524b2a1d758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=3D=3FUTF-8=3Fq=3FOla=3D20S=3DC3=3DB6der=3F=3D?= Date: Sun, 25 Sep 2022 19:36:38 +0100 Subject: patch 9.0.0588: MorphOS build is broken MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: MorphOS build is broken. Solution: Add "-lm" to LDFLAGS and "-noixemul" to CFLAGS. (Ola Söder, closes #11222) --- src/Make_ami.mak | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) 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, /**/ -- cgit v1.2.3