~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to qcm/xss.qcm

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2010-02-19 09:37:12 UTC
  • mfrom: (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100219093712-e225xvm1wjcf1cgi
Tags: 0.14-2
* comment out only function which uses va_list to work around build
  problems on armel
* Set Standards-Version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
        QString name() const { return "the XScreenSaver extension"; }
16
16
        QString shortname() const { return "xss"; }
 
17
#ifdef Q_OS_WIN
 
18
        QString checkString() const { return QString(); }
 
19
#endif
17
20
 
18
21
        bool exec()
19
22
        {
 
23
#ifdef Q_OS_WIN
 
24
                // skip XSS support on windows
 
25
                return false;
 
26
#else
20
27
                QString str =
21
28
                        "#include<X11/Xlib.h>\n"
22
29
                        "#include<X11/Xutil.h>\n"
40
47
                
41
48
                conf->addDefine("HAVE_XSS");
42
49
                return true;
 
50
#endif
43
51
        }
44
52
};