Comment 26 for bug 406302

Revision history for this message
Jakh Daven (tuxcanfly) wrote : Re: [Bug 406302] Re: Use system notifications

Well I checked the code and I guess you're right. We are asking for
libnotify includes unconditionally. I don't have the latest trunk so could
you please make the changes given below and re-build and let me know the
output?

Please change line 232, Sconstruct
        env.ParseConfig('pkg-config --libs libnotify')

to look like

if env.has_key('HAVE_LIBNOTIFY') and env['HAVE_LIBNOTIFY']:
        env.ParseConfig('pkg-config --libs libnotify')

Please reply with the output.