Changeset 19998

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

MFT r19993: 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/branches/2.2/modules/vrjuggler/configure.ac

    r19902 r19998  
    448448 
    449449    if test "x$VRJ_USE_X11" != "xyes" ; then 
    450         osx_core_frameworks="-framework Cocoa" 
     450        osx_core_frameworks="-framework AppKit -framework Cocoa" 
    451451        osx_gl_frameworks="$osx_core_frameworks" 
    452452    fi 
     
    483483        if test "x$PLATFORM" = "xDarwin" ; then 
    484484            if test "x$VRJ_USE_X11" = "xyes" ; then 
    485                 APP_EXTRA_LIBS_GL="-lGLU -lGL $osx_frameworks" 
     485                APP_EXTRA_LIBS_GL="-lGLU -lGL $osx_core_frameworks" 
    486486            else 
    487                 APP_EXTRA_LIBS_GL="$OGL_LDFLAGS $osx_frameworks" 
     487                APP_EXTRA_LIBS_GL="$OGL_LDFLAGS $osx_core_frameworks" 
    488488            fi 
    489489        else