Hi,
I cannot compile avifile if sdl is not installed due tu an error in
lib/video/renderer.cpp ligne 297
bad code :
295 :m_w(width), m_h(height), pic_w(width), pic_h(height),
296 m_sub(0), fm_height(0), g_pw(0), subtitles(_subtitles), quit(false),
297 m_bFullscreen(false), m_bKeyboardOn(true), m_iMouseOff(0),
298 #ifdef HAVE_LIBSDL
299 m_iAuto(10)
300 #endif
301 {}
302 virtual ~VideoRendererWithLock() {}
right code is:
295 :m_w(width), m_h(height), pic_w(width), pic_h(height),
296 m_sub(0), fm_height(0), g_pw(0), subtitles(_subtitles), quit(false),
297 m_bFullscreen(false), m_bKeyboardOn(true), m_iMouseOff(0)
298 #ifdef HAVE_LIBSDL
299 ,m_iAuto(10)
300 #endif
301 {}
302 virtual ~VideoRendererWithLock() {}
Fx4
_______________________________________________
Avifile mailing list
[EMAIL PROTECTED]
http://prak.org/mailman/listinfo/avifile