~ubuntu-branches/ubuntu/trusty/padre/trusty

« back to all changes in this revision

Viewing changes to debian/patches/lower-wx-requirement-to-2.8.7.patch

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2009-02-18 15:55:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090218155500-puuiwalh3xps7e1p
Tags: 0.27.ds1-1
Initial Release. Closes: #492696 -- ITP

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Author: Damyan Ivanov <dmn@debian.org>
 
2
# Debian-Specific: maybe
 
3
# Description: Lower wxWidgets requirement from 2.8.8 to 2.8.7.
 
4
#  Buggy or not, that is what is available in Debian.
 
5
--- a/inc/Module/Install/PRIVATE/Padre.pm
 
6
+++ b/inc/Module/Install/PRIVATE/Padre.pm
 
7
@@ -59,8 +59,8 @@ sub check_wx_version {
 
8
        $widgets_human =~ s/^(\d\.\d\d\d)(\d\d\d)$/$1.$2/;
 
9
        $widgets_human =~ s/0//g;
 
10
        print "Found wxWidgets $widgets_human\n";
 
11
-       unless ( $widgets >= 2.008008 ) {
 
12
-               nono("Padre needs at least version 2.8.8 of wxWidgets. You have wxWidgets $widgets_human");
 
13
+       unless ( $widgets >= 2.008007 ) {
 
14
+               nono("Padre needs at least version 2.8.7 of wxWidgets. You have wxWidgets $widgets_human");
 
15
        }
 
16
 
 
17
        return;