[Kde-bindings] [Bug 123055] New: qscintilla support does not get added to libsmokeqt when --enable-qscintilla=yes is specified

Jason E.Hale bsdkaffee at gmail.com
Sat Mar 4 04:54:46 UTC 2006


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=123055         
           Summary: qscintilla support does not get added to libsmokeqt when
                    --enable-qscintilla=yes is specified
           Product: bindings
           Version: unspecified
          Platform: FreeBSD Ports
        OS/Version: FreeBSD
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: kde-bindings kde org
        ReportedBy: bsdkaffee gmail com


Version:            (using KDE KDE 3.5.1)
Installed from:    FreeBSD Ports
Compiler:          GCC 3.4.4 
OS:                FreeBSD

When libsmokeqt is compiled with --enable-qscintilla=yes set, the configure option does not get recognized because $withval is used in configure.in instead of $enableval.  The following is a patch for kdebindings-3.5.1/smoke/qt/configure.in.in:

--- 2006-03-03-libsmokeqt-configure.in.in.diff starts here ---
--- configure.in.in.orig	Sat Sep 10 04:16:39 2005
+++ configure.in.in	Fri Mar  3 23:46:27 2006
 @ -33,7 +33,7  @
 AC_ARG_ENABLE(
    qscintilla,
    [  --enable-qscintilla <: =yes|no :>@   Smoke: build Smoke with QScintilla extention for qt  <: default:no :> ],
-   [ qtextscintilla="$withval" ],
+   [ qtextscintilla="$enableval" ],
    [ qtextscintilla="no" ]
 )
 AC_SUBST(qtextscintilla)
--- 2006-03-03-libsmokeqt-configure.in.in.diff ends here ---



More information about the Kde-bindings mailing list