GNU Emacs 23.0.92 pretest (DJGPP) (Developers)
> 2). newer "alpha" 23.0.92 (in testing, need to build it yourself) -> 43 MB
> download
> 
> 2a). ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.0.92.tar.gz
> 
> Note that a lot of that size is .c and .el sources, .elc byte compiled,
> .tex and .eps, Info docs, eLisp tutorial + reference, as well as
> Changelogs etc. etc.
Here's what's GNU:    
 
>>> P.S. It still claims an error when I try building with SYSTEM_MALLOC: 
>>>
>>>  msdos.o w16select.o xmenu.o    termcap.o tparam.o lastfile.o 
>>> getloadavg.o 
>>>                     -lg             -lm 
>>> dosfns.o:dosfns.c:(.text+0x663): undefined reference to 
>>> `_ret_lim_data' 
>>> collect2: ld returned 1 exit status 
>>> make.exe[1]: *** [temacs.exe] Error 1 
>>> make.exe[1]: Leaving directory `c:/Armslurp/emacs-23.0.92/src' 
>>> make.exe: *** [src] Error 2 
>>>
>>> Now this time you have to admit that it isn't my imagination.     
 
>
>> I will look into it.  Please submit a bug report with 
>>
>>    M-x report-emacs-bug RET 
>
> I've just fixed this in the Emacs CVS with the following change: 
>
> 2009-04-04  Eli Zaretskii  <eliz@nobody.nospam>
>
> * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: 
> Don't call ret_lim_data.  (Bug#2867) 
>
> Index: src/dosfns.c 
> =================================================================== 
> RCS file: /cvsroot/emacs/emacs/src/dosfns.c,v 
> retrieving revision 1.53 
> retrieving revision 1.54 
diff -u -r1.53 -r1.54 
--- src/dosfns.c        3 Jan 2009 15:02:30 -0000       1.53 
+++ src/dosfns.c        4 Apr 2009 09:42:12 -0000       1.54 
@@ -571,7 +571,9 @@ 
       int i; 
       Lisp_Object cmd_str, decoded_cmd, tem; 
       double pmem; 
+#ifndef SYSTEM_MALLOC 
       extern unsigned long ret_lim_data (); 
+#endif 
       uid = getuid (); 
       attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs); 
@@ -604,8 +606,12 @@ 
                            make_fixnum_or_float ((unsigned long)sbrk(0)/1024)), 
                     attrs); 
       attrs = Fcons (Fcons (Qetime, tem), attrs); 
+#ifndef SYSTEM_MALLOC 
+      /* ret_lim_data is on vm-limit.c, which is not compiled in under 
+        SYSTEM_MALLOC.  */ 
       pmem = (double)((unsigned long) sbrk (0)) / ret_lim_data () * 100.0; 
       if (pmem > 100) 
+#endif 
        pmem = 100; 
       attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs); 
       /* Pass 1: Count how much storage we need.  */
Complete thread:
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 01.04.2009, 20:46 ![Open in board view [Board]](img/board_d.gif) ![Open in mix view [Mix]](img/mix_d.gif) - GNU Emacs for DJGPP (22.3 or 23.0.92) - marcov, 01.04.2009, 23:28- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 02.04.2009, 00:20- GNU Emacs for DJGPP (22.3 or 23.0.92) - Dennis, 04.04.2009, 18:38- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 04.04.2009, 20:10- GNU Emacs for DJGPP (22.3 or 23.0.92) - Dennis, 04.04.2009, 22:23- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 05.04.2009, 23:47- GNU Emacs for DJGPP (22.3 or 23.0.92) - Dennis, 06.04.2009, 01:25- 65536 byte text files - ecm, 06.04.2009, 19:23- 65536 byte text files - Rugxulo, 07.04.2009, 00:01- 65536 byte text files - ecm, 07.04.2009, 00:14- C vs. ASM (size vs speed) - Rugxulo, 07.04.2009, 00:27- C vs. ASM (size vs speed) - marcov, 07.04.2009, 13:20- C vs. ASM (size vs speed) - Rugxulo, 07.04.2009, 13:35- C vs. ASM (size vs speed) - marcov, 08.04.2009, 10:33- C vs. ASM (size vs speed) - Rugxulo, 08.04.2009, 19:24- C vs. ASM (size vs speed) - RayeR, 08.04.2009, 21:09- C vs. ASM (size vs speed) - rr, 08.04.2009, 21:16
- C vs. ASM (size vs speed) - EZGCC for v2 - Rugxulo, 09.04.2009, 01:11- C vs. ASM (size vs speed) - EZGCC for v2 - RayeR, 09.04.2009, 23:15- C vs. ASM (size vs speed) - EZGCC for v2 - Rugxulo, 10.04.2009, 05:02- C vs. ASM (size vs speed) - EZGCC for v2 - RayeR, 10.04.2009, 14:05
 
 
- C vs. ASM (size vs speed) - EZGCC for v2 - Rugxulo, 10.04.2009, 05:02
 
- C vs. ASM (size vs speed) - EZGCC for v2 - RayeR, 09.04.2009, 23:15
 
- C vs. ASM (size vs speed) - marcov, 08.04.2009, 21:44- C vs. ASM (size vs speed) - Rugxulo, 09.04.2009, 00:55- C vs. ASM (size vs speed) - marcov, 09.04.2009, 09:09- C vs. ASM (size vs speed) - Rugxulo, 09.04.2009, 14:14- C vs. ASM (size vs speed) - marcov, 09.04.2009, 21:17- C vs. ASM (size vs speed) - Rugxulo, 09.04.2009, 21:38- C vs. ASM (size vs speed) - marcov, 10.04.2009, 10:16- EZ-GCC v2 for 386 (1.2 MB 5.25" FD) - Rugxulo, 16.04.2009, 18:38- EZ-GCC v2 for 386, GNU Emacs 23.0.95 pretest - Rugxulo, 05.07.2009, 21:22- GNU Emacs 23.0.96 pretest (last one!) - Rugxulo, 16.07.2009, 06:07- GNU Emacs 23.1 - Rugxulo, 11.09.2009, 06:54
 
 
- GNU Emacs 23.0.96 pretest (last one!) - Rugxulo, 16.07.2009, 06:07
 
- EZ-GCC v2 for 386, GNU Emacs 23.0.95 pretest - Rugxulo, 05.07.2009, 21:22
 
- EZ-GCC v2 for 386 (1.2 MB 5.25" FD) - Rugxulo, 16.04.2009, 18:38
 
- C vs. ASM (size vs speed) - marcov, 10.04.2009, 10:16
 
- C vs. ASM (size vs speed) - Rugxulo, 09.04.2009, 21:38
 
- C vs. ASM (size vs speed) - marcov, 09.04.2009, 21:17
 
- C vs. ASM (size vs speed) - Rugxulo, 09.04.2009, 14:14
 
- C vs. ASM (size vs speed) - marcov, 09.04.2009, 09:09
 
- C vs. ASM (size vs speed) - Rugxulo, 09.04.2009, 00:55
 
- C vs. ASM (size vs speed) - RayeR, 08.04.2009, 21:09
 
- C vs. ASM (size vs speed) - Rugxulo, 08.04.2009, 19:24
 
- C vs. ASM (size vs speed) - marcov, 08.04.2009, 10:33
 
- C vs. ASM (size vs speed) - Rugxulo, 07.04.2009, 13:35
 
- C vs. ASM (size vs speed) - marcov, 07.04.2009, 13:20
 
- C vs. ASM (size vs speed) - Rugxulo, 07.04.2009, 00:27
 
- 65536 byte text files - ecm, 07.04.2009, 00:14
 
- 65536 byte text files - Rugxulo, 07.04.2009, 00:01
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 07.04.2009, 00:00
 
- 65536 byte text files - ecm, 06.04.2009, 19:23
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Dennis, 06.04.2009, 01:25
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 05.04.2009, 23:47
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Dennis, 04.04.2009, 22:23
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 04.04.2009, 20:10
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Dennis, 04.04.2009, 18:38
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - Rugxulo, 02.04.2009, 00:20
- GNU Emacs 23.0.92 pretest (DJGPP) - Rugxulo, 04.04.2009, 20:38
- GNU Emacs for DJGPP (23.0.92 "pretest") - Rugxulo, 09.04.2009, 21:40
 
- GNU Emacs for DJGPP (22.3 or 23.0.92) - marcov, 01.04.2009, 23:28
 Board view
Board view Mix view
Mix view
