Thanks for pointing me to the juce_Config.h file, Bruce. Can’t believe I missed that.
I uncommented the OpenGL define, but I’m still getting undefined symbol linking errors. I definitely have AGL.framework and OpenGL.framework in my list of frameworks and my targets.
[quote]warning prebinding disabled because of undefined symbols
Undefined symbols:
__ZN4juce15OpenGLComponent15internalRepaintEiiii
__ZN4juce15OpenGLComponent20renderAndSwapBuffersEv
__ZN4juce15OpenGLComponent5paintERNS_8GraphicsE
_ZN4juce15OpenGLComponentC2EPS0
__ZN4juce15OpenGLComponentD2Ev
/Users/dlemmon/dev/testBuild/tempFiles/jucedemo.build/Debug/jucedemo.build/Objects-normal/ppc/OpenGLDemo.o reference to undefined __ZN4juce15OpenGLComponent15internalRepaintEiiii
/Users/dlemmon/dev/testBuild/tempFiles/jucedemo.build/Debug/jucedemo.build/Objects-normal/ppc/OpenGLDemo.o reference to undefined __ZN4juce15OpenGLComponent20renderAndSwapBuffersEv
/Users/dlemmon/dev/testBuild/tempFiles/jucedemo.build/Debug/jucedemo.build/Objects-normal/ppc/OpenGLDemo.o reference to undefined __ZN4juce15OpenGLComponent5paintERNS_8GraphicsE
/Users/dlemmon/dev/testBuild/tempFiles/jucedemo.build/Debug/jucedemo.build/Objects-normal/ppc/OpenGLDemo.o reference to undefined _ZN4juce15OpenGLComponentC2EPS0
/Users/dlemmon/dev/testBuild/tempFiles/jucedemo.build/Debug/jucedemo.build/Objects-normal/ppc/OpenGLDemo.o reference to undefined __ZN4juce15OpenGLComponentD2Ev
[/quote]
It looks like I’m still missing a step. I’ve checked the paths to the frameworks, and everything is pointing to valid directories and files.
I’m not quite sure where to look next.
-Dan