jayji pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1f03bba199fbbda435a34bba141354456a353c54
commit 1f03bba199fbbda435a34bba141354456a353c54 Author: Jean Guyomarc'h <[email protected]> Date: Tue Apr 12 00:05:40 2016 +0200 autotools: enable gl_cocoa on OS X by default Before this commit, X11 (via Xquartz) was the default engine to be enabled on OS X. Since the Cocoa backend became quite stable and considering applications running within the Xquartz windowing environment are arguably ugly, the Cocoa backend will now be enabled by default and X11 will be selected only if explicitely requested. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index c5afb78..d725450 100644 --- a/configure.ac +++ b/configure.ac @@ -1864,7 +1864,7 @@ EFL_LIB_START([Evas]) AC_ARG_WITH([x11], [AS_HELP_STRING([--with-x11=xlib|xcb|none],[X11 method to use: xlib, xcb or none])]) -if test "x${have_windows}" = "xyes" || test "x${have_ps3}" = "xyes"; then +if test "x${have_windows}" = "xyes" || test "x${have_ps3}" = "xyes" || test "x${have_darwin}" = "xyes"; then with_x11="none" elif test "x${with_x11}" = "x"; then with_x11="xlib" @@ -2000,7 +2000,7 @@ fi # Cocoa AC_ARG_ENABLE([cocoa], - [AS_HELP_STRING([--enable-cocoa],[enable MacOS X Cocoa . @<:@default=disabled@:>@])], + [AS_HELP_STRING([--enable-cocoa],[enable Cocoa backend on Mac OS X. @<:@default=enabled@:>@])], [ if test "x${enableval}" = "xyes" ; then want_cocoa="yes" @@ -2008,7 +2008,7 @@ AC_ARG_ENABLE([cocoa], want_cocoa="no" fi ], - [want_cocoa="no"]) + [want_cocoa="yes"]) if test "${want_cocoa}" = "yes"; then #test cocoa requirements (objc and Cocoa/Cocoa.h) --
