From a1ce286ff2abb25bbc8cc3b1ee9dbea01c5e6918 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 18 Nov 2018 23:06:51 -0500 Subject: [PATCH] Apple has done something to break SDL 1.x (and SDL < 2.0.9), and since SDL 1.x isn't being updated, it's time to drop support for it under macOS. --- sdl1/Makefile | 4 ---- sdl1/README.md | 8 ++++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/sdl1/Makefile b/sdl1/Makefile index 6b30ec9e..342d3525 100644 --- a/sdl1/Makefile +++ b/sdl1/Makefile @@ -35,10 +35,6 @@ endif BUILD = $(CC) $(CFLAGS) -I$(PDCURSES_SRCDIR) -ifeq ($(shell uname),Darwin) - DEMOFLAGS = -Dmain=SDL_main -endif - LINK = $(CC) LDFLAGS = $(LIBCURSES) $(SLIBS) RANLIB = ranlib diff --git a/sdl1/README.md b/sdl1/README.md index d1ce64ab..ebd2b8b1 100644 --- a/sdl1/README.md +++ b/sdl1/README.md @@ -7,10 +7,10 @@ This is a port of PDCurses for version 1.x of SDL. Building -------- -- On *nix (including Linux and Mac OS X), run "make" in the sdl1 - directory. There is no configure script (yet?) for this port. This - assumes a working sdl-config, and GNU make. It builds the library - libpdcurses.a (dynamic lib not implemented). +- On *nix (including Linux), run "make" in the sdl1 directory. There is + no configure script (yet?) for this port. This assumes a working + sdl-config, and GNU make. It builds the library libpdcurses.a (dynamic + lib not implemented). - The makefile accepts the optional parameter "DEBUG=Y", and recognizes the optional PDCURSES_SRCDIR environment variable, as with the console