On 2017-02-22, Sérgio Basto <ser...@serjux.com> wrote:
> Anyway perl-Qt is not in the list of packages to be retired , can we
> build perl-Qt without smokeqt ?

I don't think so. It looks like smokeqt provides some kind of
introspection for Qt library and perl-Qt is built on top of this
introspection. Example:

SV*
getClassList()
    CODE:
        AV* classList = newAV();
        for (int i = 1; i < qtgui_Smoke->numClasses; i++) {
            if (qtgui_Smoke->classes[i].className && 
!qtgui_Smoke->classes[i].external)
                av_push(classList, newSVpv(qtgui_Smoke->classes[i].className, 
0));
        }
        RETVAL = newRV_noinc((SV*)classList);
    OUTPUT:
        RETVAL

> any other solution ? 
>
I can see somebody tried to port smokeqt to Qt5 a year ago but without any
success <https://cgit.kde.org/smokeqt.git/log/?h=Qt5>.

-- Petr
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org

Reply via email to