Skip to content
Snippets Groups Projects
Commit 46a85fa4 authored by deuce's avatar deuce
Browse files

Never ever even try to use X11 under OSX (Darwin)

Since it's done with dlsym() and libdl isn't available until 10.3, this
would require a different binary for old and newer versions of OSX.
parent cf6cedad
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,9 @@ X_PRESENT = $(shell if [ ! \( -f $(X_HEADERS)$(DIRSEP)X11$(DIRSEP)Xlib.h -a -f $
ifeq ($(X_PRESENT),NO)
NO_X=1
else
ifeq ($(os),darwin) # No X11 for OSX
NO_X=1
endif
endif
ifeq ($(os),sunos)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment