Changeset 19993

Show
Ignore:
Timestamp:
04/22/07 16:02:23 (2 years ago)
Author:
patrick
Message:

Make sure that application builds on Mac OS X link against the Cocoa and
AppKit? frameworks.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/vrjuggler/configure.ac

    r19981 r19993  
    585585 
    586586    if test "x$VRJ_USE_X11" != "xyes" ; then 
    587         osx_core_frameworks="-framework Cocoa" 
     587        osx_core_frameworks="-framework AppKit -framework Cocoa" 
    588588        osx_gl_frameworks="$osx_core_frameworks" 
    589589    fi 
     
    620620        if test "x$PLATFORM" = "xDarwin" ; then 
    621621            if test "x$VRJ_USE_X11" = "xyes" ; then 
    622                 APP_EXTRA_LIBS_GL="-lGLU -lGL $osx_frameworks" 
     622                APP_EXTRA_LIBS_GL="-lGLU -lGL $osx_core_frameworks" 
    623623            else 
    624                 APP_EXTRA_LIBS_GL="$OGL_LDFLAGS $osx_frameworks" 
     624                APP_EXTRA_LIBS_GL="$OGL_LDFLAGS $osx_core_frameworks" 
    625625            fi 
    626626        else