Browse Source

configure: List Metal in video drivers.

Ryan C. Gordon 7 years ago
parent
commit
7472963805
2 changed files with 3 additions and 1 deletions
  1. 2 1
      configure
  2. 1 0
      configure.in

+ 2 - 1
configure

@@ -21220,6 +21220,7 @@ fi
 $as_echo "#define SDL_VIDEO_RENDER_METAL 1" >>confdefs.h
 
         SOURCES="$SOURCES $srcdir/src/render/metal/*.m"
+        SUMMARY_video="${SUMMARY_video} metal"
     fi
 }
 
@@ -24433,7 +24434,7 @@ $as_echo "#define SDL_TIMER_UNIX 1" >>confdefs.h
         EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
 
         if test x$enable_render = xyes -a x$enable_render_metal = xyes; then
-            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuartzCore -Wl,-weak_framework,Metal"
+            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-weak_framework,QuartzCore -Wl,-weak_framework,Metal"
         fi
         ;;
     *-nacl|*-pnacl)

+ 1 - 0
configure.in

@@ -2062,6 +2062,7 @@ AC_HELP_STRING([--enable-render-metal], [enable the Metal render driver [[defaul
         dnl This should maybe make sure you have a supported SDK version.
         AC_DEFINE(SDL_VIDEO_RENDER_METAL, 1, [ ])
         SOURCES="$SOURCES $srcdir/src/render/metal/*.m"
+        SUMMARY_video="${SUMMARY_video} metal"
     fi
 }