~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to qcm/xss.qcm

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2006-01-20 00:20:36 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060120002036-7nw6yo6totip0ee5
Tags: 0.10-2
* Added upstream changelog (Closes: Bug#327748)
* Mention --no-gpg and --no-gpg-agent in manpage (Closes: Bug#204416)

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
        bool exec()
104
104
        {
105
105
                int r = do_all();
106
 
                if(r == OK)
 
106
                if(r == OK) {
 
107
                        conf->addDefine("HAVE_XSS");
107
108
                        return true;
108
 
                if(r == NEEDLIB) {
 
109
                }
 
110
                else if(r == NEEDLIB) {
 
111
                        conf->addDefine("HAVE_XSS");
109
112
                        conf->addLib("-lXss");
110
113
                        return true;
111
114
                }
112
 
                else {
113
 
                        conf->addDefine("NO_XSS");
114
 
                        return false;
115
 
                }
116
115
        }
117
116
};