commit | 4d2073b2610dd6270cc664224dce9524b2a1d758 | [log] [tgz] |
---|---|---|
author | =?UTF-8?q?Ola=20S=C3=B6der?= <rolfkopman@gmail.com> | Sun Sep 25 19:36:38 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Sep 25 19:36:38 2022 +0100 |
tree | d8582d5b527d494bb581b91eb56a6f959f32dcea | |
parent | 9882e9ddc90abf522809dba4d9fa4de24c74df74 [diff] [blame] |
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 dd674dc..77ec32c 100644 --- a/src/Make_ami.mak +++ b/src/Make_ami.mak
@@ -68,7 +68,8 @@ LDFLAGS = -DHAVE_FSYNC -ldebug else ifeq ($(UNM),MorphOS) -LDFLAGS = -ldebug -noixemul +CFLAGS += -noixemul +LDFLAGS = -ldebug -lm -noixemul endif endif endif