summaryrefslogtreecommitdiff
path: root/chinese/xemacs/files/patch-ag
diff options
context:
space:
mode:
authorFoxfair Hu <foxfair@FreeBSD.org>2000-01-04 03:12:24 +0000
committerFoxfair Hu <foxfair@FreeBSD.org>2000-01-04 03:12:24 +0000
commitec6f4d21536962c7dc6a87ce0ebd9380426be531 (patch)
tree689c9188d29c0e46b09edc7bda88fe95b1882a4e /chinese/xemacs/files/patch-ag
parentUpgrade to emacs-20.5a (diff)
Import a new XIM-enabled(Chinese specified) XEmacs 20.4.
Submitted by : Keith Jang <keith@freebsd.sinica.edu.tw>
Notes
Notes: svn path=/head/; revision=24402
Diffstat (limited to 'chinese/xemacs/files/patch-ag')
-rw-r--r--chinese/xemacs/files/patch-ag21
1 files changed, 21 insertions, 0 deletions
diff --git a/chinese/xemacs/files/patch-ag b/chinese/xemacs/files/patch-ag
new file mode 100644
index 000000000000..5b3d38890ea7
--- /dev/null
+++ b/chinese/xemacs/files/patch-ag
@@ -0,0 +1,21 @@
+This patch eliminates a harmless warning which began to be emitted
+under FreeBSD-current when the dynamic linker was revamped to allocate
+its memory out of the application's arena.
+
+--- src/unexfreebsd.c.orig Wed Dec 18 14:44:07 1996
++++ src/unexfreebsd.c Thu Dec 11 18:06:31 1997
+@@ -680,13 +680,7 @@
+ {
+ unsigned long current_sbrk = (unsigned long) sbrk (0);
+
+- if (sbrk_of_0_at_unexec < current_sbrk)
+- {
+- if (sbrk_of_0_at_unexec != 0)
+- fprintf (stderr, "Absurd new brk addr = 0x%x (current = 0x%x)\n",
+- sbrk_of_0_at_unexec, current_sbrk);
+- }
+- else
++ if (sbrk_of_0_at_unexec > current_sbrk)
+ {
+ errno = 0;
+ if (brk ((caddr_t) sbrk_of_0_at_unexec))