Navigation Menu

Skip to content

Commit

Permalink
Fixed bug 4075 - configury adds Metal.framework to linkage even if it…
Browse files Browse the repository at this point in the history
… is not available

Ozkan Sezer

Configury adds Metal.framework to linkage even if it is not available.
My solution is setting enable_render_metal to no when Metal.framework
is not found
  • Loading branch information
slouken committed Feb 12, 2018
1 parent 873141a commit 66f9492
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions configure
Expand Up @@ -21314,6 +21314,8 @@ $as_echo "#define SDL_VIDEO_RENDER_METAL 1" >>confdefs.h

SOURCES="$SOURCES $srcdir/src/render/metal/*.m"
SUMMARY_video="${SUMMARY_video} metal"
else
enable_render_metal=no
fi
fi
}
Expand Down
2 changes: 2 additions & 0 deletions configure.in
Expand Up @@ -2093,6 +2093,8 @@ AC_HELP_STRING([--enable-render-metal], [enable the Metal render driver [[defaul
AC_DEFINE(SDL_VIDEO_RENDER_METAL, 1, [ ])
SOURCES="$SOURCES $srcdir/src/render/metal/*.m"
SUMMARY_video="${SUMMARY_video} metal"
else
enable_render_metal=no
fi
fi
}
Expand Down

0 comments on commit 66f9492

Please sign in to comment.