comparison src/Make_ami.mak @ 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 4b23672d1f0e
children 101f08b49ed3
comparison
equal deleted inserted replaced
30504:a726559c0589 30505:ce8545612296
66 else 66 else
67 ifeq ($(UNM),AROS) 67 ifeq ($(UNM),AROS)
68 LDFLAGS = -DHAVE_FSYNC -ldebug 68 LDFLAGS = -DHAVE_FSYNC -ldebug
69 else 69 else
70 ifeq ($(UNM),MorphOS) 70 ifeq ($(UNM),MorphOS)
71 LDFLAGS = -ldebug -noixemul 71 CFLAGS += -noixemul
72 LDFLAGS = -ldebug -lm -noixemul
72 endif 73 endif
73 endif 74 endif
74 endif 75 endif
75 76
76 # Patch level used for Amiga style version string 77 # Patch level used for Amiga style version string