From 449d1c7cd9cc78a139a50c4246a6ffc3fa8c33fb Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 2 Jun 2013 01:08:14 -0700 Subject: [PATCH] Fixed testnative on Mac OS X, which no longer ships X11 by default. --- test/Makefile.in | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Makefile.in b/test/Makefile.in index 48f7b1f81..c0dc376f6 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -150,10 +150,8 @@ testlock$(EXE): $(srcdir)/testlock.c ifeq (@ISMACOSX@,true) testnative$(EXE): $(srcdir)/testnative.c \ - $(srcdir)/testnativecocoa.m \ - $(srcdir)/testnativew32.c \ - $(srcdir)/testnativex11.c - $(CC) -o $@ $^ $(CFLAGS) $(LIBS) -L/usr/X11/lib -lX11 -framework Cocoa + $(srcdir)/testnativecocoa.m + $(CC) -o $@ $^ $(CFLAGS) $(LIBS) -framework Cocoa endif ifeq (@ISWINDOWS@,true)