# HG changeset patch # User Sam Lantinga # Date 1144935021 0 # Node ID 7e89aa7843c5958183cfdc455d3d062e5e27c470 # Parent 8208ae96bb2da71902f02101cb334869d92561da Fixed bug #193 The attached patch is mostly cosmetic: Currently, we always add both -framework OpenGL and -framework AGL for Mac OS X command line builds. However, the former is only used for the Cocoa video driver, and the latter only for the Carbon video driver (as far as I can tell, at least). Hence the attached patch modifies configure.in so that each only gets added to the list of frameworks if the corresponding video driver is enabled. diff -r 8208ae96bb2d -r 7e89aa7843c5 configure.in --- a/configure.in Thu Apr 13 13:29:00 2006 +0000 +++ b/configure.in Thu Apr 13 13:30:21 2006 +0000 @@ -1444,9 +1444,12 @@ AC_DEFINE(SDL_VIDEO_OPENGL) case "$host" in *-*-darwin*) - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL" - # The following is probably not available in Darwin: - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AGL" + if test x$enable_video_cocoa = xyes; then + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL" + fi + if test x$enable_video_carbon = xyes; then + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AGL" + fi esac fi }