]> git.decadent.org.uk Git - ion3.git/commitdiff
Update patches for ion-3rc-20070708.
authorBen Hutchings <ben@decadent.org.uk>
Sun, 2 Nov 2008 12:39:09 +0000 (12:39 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Sun, 2 Nov 2008 12:39:09 +0000 (12:39 +0000)
debian/changelog
debian/patches/00list
debian/patches/102_fix-string-list-crash.diff [deleted file]
debian/patches/201_fix-paths.diff

index df34e5dba7348bcd3c6e20a2a92ffa23ff906243..ae18a8038f7bec9b2c14868ca27c2c607bb23761 100644 (file)
@@ -1,5 +1,6 @@
-ion3 (20070608-2) UNRELEASED; urgency=low
+ion3 (20070708-1) UNRELEASED; urgency=low
 
+  * New upstream release
   * Improved package descriptions and debconf templates as suggested
     by debian-l10n-english review and by Helge Kreutzmann
     - closes: #429444, #430695
index 56ccaf0666e60df4504d5f088cee587b1e9ce5ec..24d414451043d3ef11a6a2c8b1e0bbf51c0fc87f 100644 (file)
@@ -1,4 +1,3 @@
-102_fix-string-list-crash.diff
 201_fix-paths.diff
 202_fix-menus.diff
 204_fix-bindings.diff
diff --git a/debian/patches/102_fix-string-list-crash.diff b/debian/patches/102_fix-string-list-crash.diff
deleted file mode 100644 (file)
index 89e31db..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh -e
-if [ $# -ne 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-case "$1" in
-    -patch) patch -f --no-backup-if-mismatch -p1 < $0;;
-    -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;;
-    *)
-        echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-        exit 1;;
-esac
-
-exit 0
-@DPATCH@
-
-# Patch thanks to Nedko Arnaudov <nedko@users.sourceforge.net>
-
-diff -ru ion-3rc-20070608/ioncore/property.c ion-3rc-20070608.fixed/ioncore/property.c
---- ion-3rc-20070608/ioncore/property.c        2007-06-08 19:56:51.000000000 +0300
-+++ ion-3rc-20070608.fixed/ioncore/property.c  2007-06-18 16:32:11.000000000 +0300
-@@ -213,7 +213,7 @@
-     Status st;
-     if(!ioncore_g.use_mb){
--        st=XStringListToTextProperty((char **)&ptr, n, &prop);
-+        st=XStringListToTextProperty((char **)ptr, n, &prop);
-     }else{
-         st=XmbTextListToTextProperty(ioncore_g.dpy, (char **)ptr, n,
-                                      XTextStyle, &prop);
index a335382e25eb1541390baef5d691e2f88db982ca..f5abe0721d144f13c36be0c187288100c04b569a 100755 (executable)
@@ -89,12 +89,12 @@ diff -Nur ion-3ds-20060519.orig/system.mk ion-3ds-20060519/system.mk
  
  #C89_SOURCE=-ansi
  
--#POSIX_SOURCE=-D_POSIX_SOURCE
-+POSIX_SOURCE=-D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112
+-#POSIX_SOURCE=-D_POSIX_C_SOURCE=200112L
++POSIX_SOURCE=-D_POSIX_C_SOURCE=200112L
  
  # Most systems
 -#XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED
-+XOPEN_SOURCE=$(POSIX_SOURCE) -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED
++XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED
  # SunOS, (Irix)
  #XOPEN_SOURCE=-D__EXTENSIONS__