Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Peng Chang (Charles) (c0326ade573e640a9e2c5875b3f3a0998f589abe)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: "Peng Chang (Charles)" <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Peng Chang (Charles) (c0326ade573e640a9e2c5875b3f3a0998f589abe)
  • Date: Tue, 28 Jul 2009 07:20:14 -0500

GIT changes to master grimoire by Peng Chang (Charles) <chp AT sourcemage.org>:

x11/gmrun/HISTORY | 3 +++
x11/gmrun/gmrun-0.9.2-gcc43.patch | 16 ++++++++++++++++
2 files changed, 19 insertions(+)

New commits:
commit c0326ade573e640a9e2c5875b3f3a0998f589abe
Author: Peng Chang (Charles) <chp AT sourcemage.org>
Commit: Peng Chang (Charles) <chp AT sourcemage.org>

gmrun: patched a function protoype

diff --git a/x11/gmrun/HISTORY b/x11/gmrun/HISTORY
index c929bc4..5652dfd 100644
--- a/x11/gmrun/HISTORY
+++ b/x11/gmrun/HISTORY
@@ -1,3 +1,6 @@
+2009-07-28 Peng Chang (Charles) <chp AT sourcemage.org>
+ * gmrun-0.9.2-gcc43.patch: POSIX-ified a comparison function
+
2008-11-20 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.9.2 #14899
* PRE_BUILD, gmrun-0.9.2-gcc43.patch: added patch from Gentoo
diff --git a/x11/gmrun/gmrun-0.9.2-gcc43.patch
b/x11/gmrun/gmrun-0.9.2-gcc43.patch
index 5be3922..73c1de4 100644
--- a/x11/gmrun/gmrun-0.9.2-gcc43.patch
+++ b/x11/gmrun/gmrun-0.9.2-gcc43.patch
@@ -38,3 +38,19 @@
#include <iostream>
#include <sstream>
#include <vector>
+
+--- gmrun-0.9.2/src/gtkcompletionline.cc.orig 2009-07-27 12:50:09.000000000
+0800
++++ gmrun-0.9.2/src/gtkcompletionline.cc 2009-07-27 12:52:01.000000000
+0800
+@@ -377,9 +377,7 @@
+ return 0;
+ }
+
+-int my_alphasort(const void* va, const void* vb) {
+- const struct dirent** a = (const struct dirent**)va;
+- const struct dirent** b = (const struct dirent**)vb;
+-
++static int my_alphasort(const struct dirent** a, const struct dirent** b)
++{
+ const char* s1 = (*a)->d_name;
+ const char* s2 = (*b)->d_name;
+



  • [SM-Commit] GIT changes to master grimoire by Peng Chang (Charles) (c0326ade573e640a9e2c5875b3f3a0998f589abe), Peng Chang (Charles), 07/28/2009

Archive powered by MHonArc 2.6.24.

Top of Page