summaryrefslogtreecommitdiff
path: root/editors/qemacs/files
diff options
context:
space:
mode:
Diffstat (limited to 'editors/qemacs/files')
-rw-r--r--editors/qemacs/files/patch-charset.c11
-rw-r--r--editors/qemacs/files/patch-configure11
-rw-r--r--editors/qemacs/files/patch-qe.h22
-rw-r--r--editors/qemacs/files/patch-tty.c11
-rw-r--r--editors/qemacs/files/patch-unicode_join.c10
-rw-r--r--editors/qemacs/files/patch-x11.c11
6 files changed, 0 insertions, 76 deletions
diff --git a/editors/qemacs/files/patch-charset.c b/editors/qemacs/files/patch-charset.c
deleted file mode 100644
index d8796d70e349..000000000000
--- a/editors/qemacs/files/patch-charset.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- charset.c.orig Tue Apr 22 07:01:42 2003
-+++ charset.c Thu Jan 18 13:56:10 2007
-@@ -20,7 +20,7 @@
-
- QECharset *first_charset = NULL;
-
--extern QECharset charset_7bit;
-+static QECharset charset_7bit;
-
- /* specific tables */
- static unsigned short table_idem[256];
diff --git a/editors/qemacs/files/patch-configure b/editors/qemacs/files/patch-configure
deleted file mode 100644
index 6a141f1d05d9..000000000000
--- a/editors/qemacs/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig Tue Apr 22 07:01:43 2003
-+++ configure Thu Jan 18 12:39:56 2007
-@@ -311,7 +311,7 @@
- head $source_path/VERSION >>config.mak
- echo "" >>config.mak
- echo -n "#define QE_VERSION \"" >> $TMPH
--head $source_path/VERSION >> $TMPH
-+echo -n `head $source_path/VERSION` >> $TMPH
- echo "\"" >> $TMPH
- if test "$network" = "yes" ; then
- echo "#define CONFIG_NETWORK 1" >> $TMPH
diff --git a/editors/qemacs/files/patch-qe.h b/editors/qemacs/files/patch-qe.h
deleted file mode 100644
index 3756ddf0de61..000000000000
--- a/editors/qemacs/files/patch-qe.h
+++ /dev/null
@@ -1,22 +0,0 @@
---- qe.h.orig 2003-04-22 00:01:42.000000000 +0200
-+++ qe.h 2005-06-07 16:02:27.000000000 +0200
-@@ -576,10 +576,18 @@
-
- /* make sure that the keyword is not disabled by glibc (TINYC case) */
- #undef __attribute__
--
-+#if __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 3)
- /* same method as the linux kernel... */
- #define __init_call __attribute__ ((unused,__section__ (".initcall.init")))
- #define __exit_call __attribute__ ((unused,__section__ (".exitcall.exit")))
-+#else
-+#undef __attribute_used__
-+#define __attribute_used__ __attribute__((__used__))
-+#define __init_call __attribute_used__ __attribute__((__section__ (".initcall.init")))
-+#define __exit_call __attribute_used__ __attribute__((__section__ (".exitcall.exit")))
-+
-+#endif
-+
-
- #define qe_module_init(fn) \
- static int (*__initcall_##fn)(void) __init_call = fn
diff --git a/editors/qemacs/files/patch-tty.c b/editors/qemacs/files/patch-tty.c
deleted file mode 100644
index 36726f020dd5..000000000000
--- a/editors/qemacs/files/patch-tty.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- tty.c.orig Tue Apr 22 07:01:42 2003
-+++ tty.c Thu Jan 18 13:56:41 2007
-@@ -70,7 +70,7 @@
- return 1;
- }
-
--extern QEDisplay tty_dpy;
-+static QEDisplay tty_dpy;
-
- static int term_init(QEditScreen *s, int w, int h)
- {
diff --git a/editors/qemacs/files/patch-unicode_join.c b/editors/qemacs/files/patch-unicode_join.c
deleted file mode 100644
index 69e27ec48a55..000000000000
--- a/editors/qemacs/files/patch-unicode_join.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- unicode_join.c.orig Sat Aug 21 20:08:14 2004
-+++ unicode_join.c Sat Aug 21 20:08:27 2004
-@@ -182,6 +182,7 @@
- *q++ = l1;
- i++;
- found:
-+ break;
- }
- }
- return q - buf_out;
diff --git a/editors/qemacs/files/patch-x11.c b/editors/qemacs/files/patch-x11.c
deleted file mode 100644
index 2e0654fbf9be..000000000000
--- a/editors/qemacs/files/patch-x11.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- x11.c.orig Tue Apr 22 07:01:42 2003
-+++ x11.c Thu Jan 18 13:57:10 2007
-@@ -76,7 +76,7 @@
- static CSSRect update_rects[UPDATE_MAX_REGIONS];
- #endif
-
--extern QEDisplay x11_dpy;
-+static QEDisplay x11_dpy;
- static int visual_depth;
-
- static int force_tty = 0;