This file is indexed.

/usr/share/qt4/mkspecs/features/qscintilla2.prf is in libqscintilla2-dev 2.8.4+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
greaterThan(QT_MAJOR_VERSION, 4) {
    QT += widgets printsupport

    greaterThan(QT_MINOR_VERSION, 1) {
        macx:QT += macextras
    }
}

INCLUDEPATH += $$[QT_INSTALL_HEADERS]

LIBS += -L$$[QT_INSTALL_LIBS]

CONFIG(debug, debug|release) {
    mac: {
        LIBS += -lqscintilla2_debug
    } else {
        win32: {
            LIBS += -lqscintilla2d
        } else {
            greaterThan(QT_MAJOR_VERSION, 4) {
                LIBS += -lqt5scintilla2
            } else {
                LIBS += -lqscintilla2
            }
        }
    }
} else {
    greaterThan(QT_MAJOR_VERSION, 4) {
        LIBS += -lqt5scintilla2
        }
        else {
    LIBS += -lqscintilla2
        }
}