--Boundary-00=_0rsH9vjeWOMsWIg Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Am Samstag, 29. Juni 2002 22:46 schrieb Neil Stevens: > On Saturday June 29, 2002 12:41, Karl Robillard wrote: > > Terence Welsh recently GPLed the source for his Windows screensavers. > > His website is http://www.reallyslick.com/. > > > > So far I've ported Flux & Euphoria to KDE. > > You can download the source at http://outguard.sf.net/arc/slick.tgz (but > > only for a while). > > > > Please check them out for any problems. Then lets get them into the > > kdeartwork module. > > Look good to me, compiled fine, and look interesting. I say put them in. > > :-) > > Though, trying to fix the Makefile exposed to me a problem - adding GL > savers requires configure.in.in changes. Attached is a patch to fix that > for the future. Any objections to me committing? Hmm, that patch does not work for me.=20 The problem seems to be that the qgl testprogram in configure.in.in is wron= g.=20 After fixing it, I get the following errors for configure with your patch: /debian/home/kdecompiler/src/kdeartwork/configure: GL_XSAVERS: command not= =20 found /debian/home/kdecompiler/src/kdeartwork/configure: GL_KSAVERS: command not= =20 found /debian/home/kdecompiler/src/kdeartwork/configure: GL_DESKTOP_FILES: comman= d=20 not found Without your patch (and with mine only) it works. I attached my patch . Any objections to me commiting that one? --Boundary-00=_0rsH9vjeWOMsWIg Content-Type: text/x-diff; charset="iso-8859-1"; name="screensaver-gl-fix-klas" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="screensaver-gl-fix-klas" Index: configure.in.in =================================================================== RCS file: /cvs/kde/kdeartwork/kscreensaver/configure.in.in,v retrieving revision 1.6 diff -u -3 -p -r1.6 configure.in.in --- configure.in.in 2002/03/02 17:39:55 1.6 +++ configure.in.in 2002/06/30 08:58:26 @@ -14,10 +14,10 @@ AC_CACHE_VAL(ac_cv_kde_qt_has_opengl, LIBS="$LIBS $LIBQT $KDE_MT_LIBS" AC_TRY_LINK([ - #include + #include ], [ - QGLWidget = new QGLWidget(0); + QGLWidget *qglwidget = new QGLWidget(0); ], ac_cv_kde_qt_has_opengl=yes, ac_cv_kde_qt_has_opengl=no) --Boundary-00=_0rsH9vjeWOMsWIg-- >> Visit http://mail.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe <<