autotools: fix configuration of Ecore_Cocoa
authorJean Guyomarc'h <jean@guyomarch.bzh>
Sat, 28 May 2016 08:52:09 +0000 (10:52 +0200)
committerJean Guyomarc'h <jean@guyomarch.bzh>
Sat, 28 May 2016 08:52:09 +0000 (10:52 +0200)
On Mac OS X, we are using OBJC, not GNU-OBJC.
This test seems unnecessary as well, as a longuage tests
and a linking test are performed later.

Fixes T3710.

configure.ac

index ff5c2ad..40a2edf 100644 (file)
@@ -2020,7 +2020,6 @@ if test "${want_cocoa}" = "yes"; then
     have_cocoa="no"
     m4_ifdef([AC_PROG_OBJC],
       [
-       if test "x${have_gnu_objc}" = "xyes" ; then
           AC_LANG_PUSH([Objective C])
           LIBS_save="$LIBS"
           LIBS="$LIBS -framework Cocoa"
@@ -2048,7 +2047,6 @@ window = [[NSWindow alloc]
           AC_MSG_CHECKING([whether Cocoa framework is supported])
           AC_MSG_RESULT([${have_cocoa}])
           AC_LANG_POP([Objective C])
-       fi
    ])
 fi
 AC_SUBST(cocoa_ldflags)
@@ -2059,7 +2057,6 @@ if test "x${have_cocoa}" = "xyes"; then
     have_cocoa_coreservices="no"
     m4_ifdef([AC_PROG_OBJC],
       [
-       if test "x${have_gnu_objc}" = "xyes" ; then
           AC_LANG_PUSH([Objective C])
           LIBS_save="$LIBS"
           LIBS="$LIBS -framework CoreServices"
@@ -2080,7 +2077,6 @@ if test "x${have_cocoa}" = "xyes"; then
           AC_MSG_CHECKING([whether Cocoa CoreServices framework is supported])
           AC_MSG_RESULT([${have_cocoa_coreservices}])
           AC_LANG_POP([Objective C])
-       fi
    ])
 fi
 AC_SUBST(cocoa_coreservices_ldflags)