| Summary: | $have_arts -> $build_arts fix for configure.in.in never made it into HEAD | ||
|---|---|---|---|
| Product: | [Unmaintained] kscreensaver | Reporter: | Christopher Martin <chrsmrtn> |
| Component: | general | Assignee: | kscreensaver bugs tracking <kscreensaver-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | ana |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Christopher Martin
2005-03-24 21:13:51 UTC
This incorrect check for aRts causes kdeartwork-3.4.0 to skip the compilation of kfiresaver.kss. *** This bug has been confirmed by popular vote. *** Are you going to release KDE 3.4.1 without this trivial bug fixed? It prevents arts screensavers (only kfiresaver at this time) from being compiled. SVN commit 424152 by howells: Forward port correct arts fix BUG: 102398 M +1 -1 configure.in.in --- trunk/KDE/kdeartwork/kscreensaver/configure.in.in #424151:424152 @@ -34,7 +34,7 @@ AM_CONDITIONAL(COMPILE_GL_XSAVERS, test x$have_gl = xyes) AM_CONDITIONAL(COMPILE_GL_KSAVERS, test x$ac_cv_kde_qt_has_opengl = xyes) AM_CONDITIONAL(COMPILE_X11_KSAVERS, test "x$ac_x_includes" != x && test "x$ac_x_libraries" != x) -AM_CONDITIONAL(COMPILE_ARTS_KSAVERS, test x$have_arts = xyes) +AM_CONDITIONAL(COMPILE_ARTS_KSAVERS, test x$build_arts = xyes) LIBART= |