[leaf-commits] src/bering-uclibc4/source/e3 buildtool.cfg, 1.2, 1.3 buildtool.mk, 1.2, 1.3 e3.h, 1.1.1.1, 1.2

KP Kirchd?rfer <[email protected]>
Newsgroups gmane.linux.leaf.cvs
Message-ID <[email protected]>
Update of /cvsroot/leaf/src/bering-uclibc4/source/e3
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv14892

Modified Files:
	buildtool.cfg buildtool.mk e3.h 
Log Message:
enable NE as default editor mode

shall UTF8 support be enabled?


Index: e3.h
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc4/source/e3/e3.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** e3.h	26 Apr 2010 09:02:21 -0000	1.1.1.1
--- e3.h	26 Oct 2010 12:55:47 -0000	1.2
***************
*** 1,4 ****
  ;--------------------------------------------------------------------------
! ;  e3.asm v2.6.2 Copyright (C) 2000-05 Albrecht Kleine <[email protected]>
  ;
  ;  see GNU copyright details in e3.asm
--- 1,4 ----
  ;--------------------------------------------------------------------------
! ;  e3.asm v2.8 Copyright (C) 2000-10 Albrecht Kleine
  ;
  ;  see GNU copyright details in e3.asm
***************
*** 14,18 ****
  %define LESSWRITEOPS
  ;-------
! ;;;%define UTF8				;for UTF8 console or xterm e.g. @ Suse 9.1
  ;-------
  %define BEEP_IN_VI			;undef if you hate beeping computers
--- 14,19 ----
  %define LESSWRITEOPS
  ;-------
! %define UTF8				;for UTF8 console or xterm e.g. @ Suse 9.1
! %define UTF8RTS				;runtime detection of UTF8 console display
  ;-------
  %define BEEP_IN_VI			;undef if you hate beeping computers
***************
*** 27,33 ****
--- 28,48 ----
  ;	D O   N O T   C H A N G E   B E L O W   L I N E
  ;----------------------------------------------------------------------
+ %ifndef LINUX
+  %undef UTF8
+ %endif
+ 
+ %ifndef UTF8
+   %undef UTF8RTS
+ %endif
+ 
+ %ifdef NETBSD
+ %define FREEBSD
+ %endif
  %ifdef OPENBSD
  %define FREEBSD
  %endif
+ ;
+ ;beware of SYS_... constants > 255! (see NetBSD)
+ ;
  %ifdef BEOS
  	;posix/termios.h				;termios eq termio
***************
*** 376,381 ****
   ;8.Juni 2004: see /usr/src/linux/Documentation/VGA-softcursor.txt
  %else
!  %define CURSORMGNT			;switch cursor depending of 'INSERT'-mode
   ;trad style
  %endif
  ;--------
--- 391,399 ----
   ;8.Juni 2004: see /usr/src/linux/Documentation/VGA-softcursor.txt
  %else
!  %define CURSORMGNT
   ;trad style
+  %ifdef AMD64
+   %undef CURSORMGNT			;work around January 2006
+  %endif
  %endif
  ;--------
***************
*** 442,450 ****
  %ifdef LIBC
   extern open,read,write,close,lseek,rename,_exit,ioctl,fstat,fchown,select,unlink,fchmod
!  extern errno
   %undef SYS_readlink
   %undef SYS_brk
   %undef SYS_kill
   %undef SYS_sigaction
   %undef USE_PIPE
  %endif
--- 460,469 ----
  %ifdef LIBC
   extern open,read,write,close,lseek,rename,_exit,ioctl,fstat,fchown,select,unlink,fchmod
!  extern _errno
   %undef SYS_readlink
   %undef SYS_brk
   %undef SYS_kill
   %undef SYS_sigaction
+  %undef SYS_rt_sigaction
   %undef USE_PIPE
  %endif
***************
*** 474,482 ****
  	%define TSize   word			;due oversized ICANON
  ;------
  	struc stat_struc
  .st_dev:	resd 1
  .st_ino:	resd 1
! .st_mode:	resw 1
! .st_nlink:	resw 1
  .st_uid:	resd 1
  .st_gid:	resd 1
--- 493,507 ----
  	%define TSize   word			;due oversized ICANON
  ;------
+ 
  	struc stat_struc
  .st_dev:	resd 1
  .st_ino:	resd 1
! %ifdef OPENBSD
! .st_mode:	resw 1				;for syscall 279
! .st_nlink:	resw 1				;ditto
! %else
! .st_mode:	resd 1
! .st_nlink:	resd 1
! %endif
  .st_uid:	resd 1
  .st_gid:	resd 1
***************
*** 495,498 ****
--- 520,524 ----
  .st_spare:	resd 5
  	endstruc
+ 
  %define SYS_exit	1
  %define SYS_fork	2
***************
*** 503,524 ****
  %define SYS_unlink	10
  %define SYS_execve	59
! %define SYS_lseek	19	;also 199
  %define SYS_utime	138
- %ifndef OPENBSD
  %define SYS_kill	37
- %endif
  %define SYS_rename	128
  %define SYS_pipe	42
  %define SYS_ioctl	54
  %define SYS_dup2	90
! %ifndef OPENBSD
! %define SYS_sigaction	46	;also 342
! %endif
  %define SYS_readlink	58
  %define SYS_fchown	123
  %define SYS_fchmod      124
! %define SYS_fstat	189
  %define SYS_wait4	7
  %define SYS_select	93
  %define time_t	resd
  
--- 529,560 ----
  %define SYS_unlink	10
  %define SYS_execve	59
! %define SYS_lseek	199	;old was 19
  %define SYS_utime	138
  %define SYS_kill	37
  %define SYS_rename	128
  %define SYS_pipe	42
  %define SYS_ioctl	54
  %define SYS_dup2	90
! %define SYS_sigaction	46	;also 342 *** take care if >255 cause only register al used
  %define SYS_readlink	58
  %define SYS_fchown	123
  %define SYS_fchmod      124
! %define SYS_fstat	279	;old was 189
  %define SYS_wait4	7
  %define SYS_select	93
+ 
+ %ifdef OPENBSD
+ %undef SYS_kill
+ %undef SYS_sigaction
+ %undef  SYS_fstat	
+ %define SYS_fstat	189	;could not test 292
+ %endif
+ 
+ %ifdef NETBSD
+ %undef SYS_kill		;both
+ %undef SYS_sigaction	;currently only for old COMPAT layer working
+ %endif
+ 
+ 
  %define time_t	resd
  
***************
*** 741,744 ****
--- 777,781 ----
   %undef UTF8
  %endif
+ ;--------
  ;
  stdtxtlen	equ 10			;do not move this to EOF: code size would increase

Index: buildtool.cfg
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc4/source/e3/buildtool.cfg,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** buildtool.cfg	24 Oct 2010 21:40:50 -0000	1.2
--- buildtool.cfg	26 Oct 2010 12:55:46 -0000	1.3
***************
*** 12,19 ****
  </File>
  
! #<File e3.h>
! #  Server = cvs4-sourceforge
! #  envname = E3_HEADER
! #  Revision = HEAD
! #  Directory = e3
! #</File>
--- 12,19 ----
  </File>
  
! <File e3.h>
!   Server = cvs4-sourceforge
!   envname = E3_HEADER
!   Revision = HEAD
!   Directory = e3
! </File>

Index: buildtool.mk
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc4/source/e3/buildtool.mk,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** buildtool.mk	24 Oct 2010 21:40:50 -0000	1.2
--- buildtool.mk	26 Oct 2010 12:55:47 -0000	1.3
***************
*** 13,18 ****
  $(E3_DIR)/.source: 
  	zcat $(E3_SOURCE) |  tar -xvf - 
! #	zcat $(E3_PATCH1) | patch -d $(E3_DIR) -p1
! #	cp $(E3_HEADER) $(E3_DIR)
  	touch $(E3_DIR)/.source
  
--- 13,17 ----
  $(E3_DIR)/.source: 
  	zcat $(E3_SOURCE) |  tar -xvf - 
! 	cp $(E3_HEADER) $(E3_DIR)
  	touch $(E3_DIR)/.source
  


------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.