Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-15 Thread Michael Jennings
On Tuesday, 15 November 2005, at 10:09:39 (+0800),
Phuah Yee Keat wrote:

 1. What unix/distro are you guys using that have backspace=^H? I am 
 running on slackware and stty -a tells me backspace=^?

It's not a question of distribution.  It's a question of emulation.

^H (character 0x08) *is* backspace.  ^? (character 0x7f) *is* delete.
Those are part of ASCII.  And vt100/vt102 terminals were true to this
fact.

However, with the VT-220, suddenly the backspace key started sending
^? instead.  And since the Linux console emulates a vt220...well, you
can figure out the rest. :)

 2. Is there any special reason why the default is --with-backspace=bs 
 and not --with-backspace=auto?

Because the Eterm terminfo entry specifies that backspace is ^H.
Sending anything else would conflict with what curses-based
applications were told to expect.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 Remember kids, if there's a loaded gun in the room, be sure that
  you're the one holding it.-- Captain Combat


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-15 Thread Phuah Yee Keat

Michael Jennings wrote:

On Tuesday, 15 November 2005, at 10:09:39 (+0800),
Phuah Yee Keat wrote:

1. What unix/distro are you guys using that have backspace=^H? I am 
running on slackware and stty -a tells me backspace=^?


It's not a question of distribution.  It's a question of emulation.


[snipped]

This is hard for me to understand, my stty -a shows this:
erase = ^?

I am total newbie with stty stuffs, do you mean that the default stty 
settings are set by my Eterm/Xterm/Aterm/Konsole and not by the 
distro/unix? How does that explains the inability for my escape to work 
across telnet localhost then?


2. Is there any special reason why the default is --with-backspace=bs 
and not --with-backspace=auto?


Because the Eterm terminfo entry specifies that backspace is ^H.
Sending anything else would conflict with what curses-based
applications were told to expect.


My stty -a shows erase = ^?, I compile Eterm with --with-backspace=del, 
and my TERM=Eterm, my backspace keys still works correctly in 
curses-based apps (vi and another custom curses app), I don't understand 
what kind of conflict it might cause. If it can create conflict, does it 
means that --with-backspace=del should not be used with TERM=Eterm at 
all? Then why do we have the --with-backspace configure switch in the 
first place?


p/s: I am a terminfo/Eterm/backspace-delete-mess newbie, so please 
educate me. :)


Cheers,
Phuah Yee Keat


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-15 Thread Michael Jennings
On Wednesday, 16 November 2005, at 10:37:54 (+0800),
Phuah Yee Keat wrote:

 I am total newbie with stty stuffs, do you mean that the default
 stty settings are set by my Eterm/Xterm/Aterm/Konsole and not by the
 distro/unix? How does that explains the inability for my escape to
 work across telnet localhost then?

Your default stty settings are determined by your tty.  In other
words, the kernel.  You can change them at any time.  For example,
from my .bashrc:

if (tty -s); then
  export TERM=${TERM:-Eterm}
  export TERMINFO=$HOME/.terminfo
  export TTY=`tty`
  stty -ixon -ixoff erase ^H kill ^U susp ^Z intr ^C stop ^@ start ^@
  #eval `resize`
fi


 My stty -a shows erase = ^?, I compile Eterm with
 --with-backspace=del, and my TERM=Eterm, my backspace keys still
 works correctly in curses-based apps (vi and another custom curses
 app), I don't understand what kind of conflict it might cause.

man terminfo

 If it can create conflict, does it means that --with-backspace=del
 should not be used with TERM=Eterm at all? Then why do we have the
 --with-backspace configure switch in the first place?

Because some people prefer to use Eterm with TERM=xterm or TERM=linux.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 A lot of times, men do things they don't want to do so the woman
  they're going out with will do things *they* don't want to do.
  -- Tim Allen


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Phuah Yee Keat

Morten Nilsen wrote:

Phuah Yee Keat wrote:



I frequently need to use this Eterm on my Linux box to telnet onto a 
Solaris machine, and the Solaris machine does not understand 
TERM=eterm. So the _correct_ way to do is to install the eterm 
terminfo on the solaris box?


Is there a way to ask Eterm behaves as xterm? Since I would prefer to 
keep the TERM=xterm when running the applications on the solaris server.



what options did you compile eterm with?

what is in your /etc/inputrc and ~/.inputrc ?



Hi,

I have tried removing the term settings from user.cfg, so now I am 
starting with term=Eterm, still same case.


Previously I compiled Eterm with just --prefix, I just tried with 
--with-backspace=bs, still same case.


I have attached my inputrc.

Cheers,
Phuah Yee Keat
# /etc/inputrc
# This file configures keyboard input for programs using readline.
# See man 3 readline for more examples.

# Configure the system bell.  Options are none, visible, and audible.
#set bell-style none

# Enable 8 bit input.
set meta-flag On
set input-meta On
set convert-meta Off
set output-meta On

# Set various nice escape sequences:
\eOd: backward-word
\eOc: forward-word

# for linux console
\e[1~: beginning-of-line
\e[4~: end-of-line
\e[5~: beginning-of-history
\e[6~: end-of-history
\e[3~: delete-char
\e[2~: quoted-insert

# for xterm
\eOH: beginning-of-line
\eOF: end-of-line

# for freebsd console
\e[H: beginning-of-line
\e[F: end-of-line


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Morten Nilsen

Phuah Yee Keat wrote:
I have tried removing the term settings from user.cfg, so now I am 
starting with term=Eterm, still same case.


Previously I compiled Eterm with just --prefix, I just tried with 
--with-backspace=bs, still same case.


I've compiled eterm with these options;

 --with-gnu-ld \
 --enable-auto-encoding \
 --without-sense-of-humor \
 --enable-mmx \
 --with-backspace=bs \
 --with-delete=execute \
 --enable-utmp \
 --enable-trans


I have attached my inputrc.



and I mine

Cheers,
--
Morten
# do not bell on tab-completion
#set bell-style none

set meta-flag on
set input-meta on
set convert-meta off
set output-meta on

$if mode=emacs

# for linux console and RH/Debian xterm
\e[1~: beginning-of-line
\e[4~: end-of-line
\e[5~: beginning-of-history
\e[6~: end-of-history
\e[3~: delete-char
\e[2~: quoted-insert
\e[5C: forward-word
\e[5D: backward-word
\e\e[C: forward-word
\e\e[D: backward-word

# for rxvt
\e[8~: end-of-line

# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
\eOH: beginning-of-line
\eOF: end-of-line

# for eterm
\e[7~: beginning-of-line

# for freebsd console
\e[H: beginning-of-line
\e[F: end-of-line
$endif


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Morten Nilsen

Phuah Yee Keat wrote:
It still doesn't work, nobody else have this problem? It must be my 
system... :(


well, you did say your system doesn't have a termcap entry for eterm,
did you not?

--
Morten


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Phuah Yee Keat

Morten Nilsen wrote:

Phuah Yee Keat wrote:

It still doesn't work, nobody else have this problem? It must be my 
system... :(



well, you did say your system doesn't have a termcap entry for eterm,
did you not?


Hi,

Sorry for confusing you guys, now I am just trying telnet localhost, 
with Eterm-0.9.4, with TERM=Eterm, with the Eterm terminfo installed 
from Eterm-0.9.4, and the backspace key does not work.


Got a lot of info from google, even one about making a kernel patch! 
Seems like the login (or issit getty) program is a beast, what puzzles 
me is that why Konsole, xterm, aterm, and rxvt gives me no problem, only 
Eterm.


Another lead that I just found out, setting the Keyboard=Solaris in the 
Settings configuration in Konsole, gives me exactly the same issue that 
I am facing in Eterm, having Konsole work with Keyboard=Xterm (XFree 
4.x.x) which is the default is fine.


Cheers,
Phuah Yee Keat


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Michael Jennings
On Monday, 14 November 2005, at 19:16:14 (+0800),
Phuah Yee Keat wrote:

 Forgot to also mention that the man(1) and telnet(1) program now
 works, and without touching the stty program anymore.
 
 I just configure with --with-backspace=del

http://www.eterm.org/docs/faq/#2

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 Basically there are no known XFree86 3.3.x memory leaks.  If you
  think you've found one, you probably haven't.
  -- Mark Vojkovich, XFree86 Developer


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Phuah Yee Keat

Morten Nilsen wrote:

Phuah Yee Keat wrote:

I have tried removing the term settings from user.cfg, so now I am 
starting with term=Eterm, still same case.


Previously I compiled Eterm with just --prefix, I just tried with 
--with-backspace=bs, still same case.



I've compiled eterm with these options;

 --with-gnu-ld \
 --enable-auto-encoding \
 --without-sense-of-humor \
 --enable-mmx \
 --with-backspace=bs \
 --with-delete=execute \
 --enable-utmp \
 --enable-trans


I have attached my inputrc.



and I mine


Hi guys,

After a lot of poking around, I poked into the configure.in script, 
leaving out --with-backspace or putting --with-backspace=detect or 
--with-backspace=auto actually does not do a thing! It just assume 
backspace=BS! Which means even though my stty says (and it does) erase = 
^?, Eterm will actually force backspace to send ^H!


Maybe the configure.in file needs patching? Thanks to the world of open 
source, I actually (sort of) figured this out after poking at konsole's 
source code!


I am using the Eterm-0.9.4-20051110.tar.gz snapshot that someone posted 
the link here before.


Time to go home, will see what I can do tommorow to the configure script.

Cheers,
Phuah Yee Keat


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Phuah Yee Keat

Hi,

Forgot to also mention that the man(1) and telnet(1) program now works, 
and without touching the stty program anymore.


I just configure with --with-backspace=del

Cheers,
Phuah Yee Keat


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-14 Thread Phuah Yee Keat

Michael Jennings wrote:

On Monday, 14 November 2005, at 19:16:14 (+0800),
Phuah Yee Keat wrote:



Forgot to also mention that the man(1) and telnet(1) program now
works, and without touching the stty program anymore.

I just configure with --with-backspace=del



http://www.eterm.org/docs/faq/#2


Two questions.

1. What unix/distro are you guys using that have backspace=^H? I am 
running on slackware and stty -a tells me backspace=^?


2. Is there any special reason why the default is --with-backspace=bs 
and not --with-backspace=auto?


Cheers,
Phuah Yee Keat


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-13 Thread Phuah Yee Keat

Michael Jennings wrote:

On Friday, 11 November 2005, at 14:57:49 (+0800),
Phuah Yee Keat wrote:



Starting Eterm, with TERM=xterm,


   ^^

Congratulations.  You've identified the problem. :)


Hi,

I frequently need to use this Eterm on my Linux box to telnet onto a 
Solaris machine, and the Solaris machine does not understand TERM=eterm. 
So the _correct_ way to do is to install the eterm terminfo on the 
solaris box?


Is there a way to ask Eterm behaves as xterm? Since I would prefer to 
keep the TERM=xterm when running the applications on the solaris server.


Cheers,
Phuah Yee Keat


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-13 Thread Morten Nilsen

Phuah Yee Keat wrote:


I frequently need to use this Eterm on my Linux box to telnet onto a 
Solaris machine, and the Solaris machine does not understand TERM=eterm. 
So the _correct_ way to do is to install the eterm terminfo on the 
solaris box?


Is there a way to ask Eterm behaves as xterm? Since I would prefer to 
keep the TERM=xterm when running the applications on the solaris server.


what options did you compile eterm with?

what is in your /etc/inputrc and ~/.inputrc ?

--
Morten


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-13 Thread Mike Frysinger
On Mon, Nov 14, 2005 at 10:53:31AM +0800, Phuah Yee Keat wrote:
 So the _correct_ way to do is to install the eterm terminfo on the 
 solaris box?

yes
-mike


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-11 Thread Didier Casse
OK... My apologies. I was reading too rapidly a while ago. This is old
Eterm. Version 0.9.4 in cvs is the one where most bugs have been
cleared. Try downloading these:

http://sps.nus.edu.sg/~didierbe/packages/libast-0.7-20051110.tar.gz
http://sps.nus.edu.sg/~didierbe/packages/Eterm-0.9.4-20051110.tar.gz

and install them. See if that helps. If not then I guess Michael
Jennigs would intervene. Cheers.


--
With kind regards,
Didier.


Yum/apt repository for DR17/EFL: http://sps.nus.edu.sg/~didierbe

Didier F.B Casse
PhD candidate, Singapore Synchrotron Light Source (SSLS)
National University of Singapore.


On 11/11/05, Phuah Yee Keat [EMAIL PROTECTED] wrote:
 The information is in the subject, its 0.9.3 tarball, sorry for not
 specifying it in the content. :P

 Cheers,
 Phuah Yee Keat

 Didier Casse wrote:
  Dude.. you forgot the most important information: Which version of
  Eterm are you using? 0.9.3 or cvs 0.9.4 (and which date did you pulled
  out if your package comes from cvs).
  --
  With kind regards,
  Didier.
 
  
  Yum/apt repository for DR17/EFL: http://sps.nus.edu.sg/~didierbe
 
  Didier F.B Casse
  PhD candidate, Singapore Synchrotron Light Source (SSLS)
  National University of Singapore.
 
 
  On 11/11/05, Phuah Yee Keat [EMAIL PROTECTED] wrote:
 
 Hi,
 
 If this is not the appropriate mailing list to ask this question, please
 forward me to the correct one. :)
 
 I have read the xterm-faq and the Eterm-faq about the backspace key, but
 I am still having problems.
 
 Starting Eterm, with TERM=xterm, the backspace keys worked fine in Bash.
 But in man(1), during a search, the backspace key display ^H instead of
 backspacing. After I did a stty erase ^H, the backspace key worked
 correctly in the man(1) program.
 
 But, it still does not work in telnet localhost, at the login prompt,
 backspace keys give me ^H, and the stty setting does not work.
 
 Konsole makes the backspace work as expected on all the above scenarios.
 
 Cheers,
 Phuah Yee Keat
 
 
 ---
 SF.Net email is sponsored by:
 Tame your development challenges with Apache's Geronimo App Server. Download
 it for free - -and be entered to win a 42 plasma tv or your very own
 Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-11 Thread Michael Jennings
On Friday, 11 November 2005, at 14:57:49 (+0800),
Phuah Yee Keat wrote:

 Starting Eterm, with TERM=xterm,
   ^^

Congratulations.  You've identified the problem. :)

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 No weapon formed against us shall prosper.  All those who rise
  against us shall fall.  I will not fear what the devil may bring
  me; I am a servant of God. -- Petra


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Eterm 0.9.3 and Backspace in telnet and man

2005-11-10 Thread Phuah Yee Keat

Hi,

If this is not the appropriate mailing list to ask this question, please 
forward me to the correct one. :)


I have read the xterm-faq and the Eterm-faq about the backspace key, but 
I am still having problems.


Starting Eterm, with TERM=xterm, the backspace keys worked fine in Bash. 
But in man(1), during a search, the backspace key display ^H instead of 
backspacing. After I did a stty erase ^H, the backspace key worked 
correctly in the man(1) program.


But, it still does not work in telnet localhost, at the login prompt, 
backspace keys give me ^H, and the stty setting does not work.


Konsole makes the backspace work as expected on all the above scenarios.

Cheers,
Phuah Yee Keat


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] eterm 0.9.3

2005-07-10 Thread sahady
dear
please have look the error messages I got after trying to install the
Etrem 0.9.3. this error messages appears when i ran make
after ./configure.
sorry but i'm not linux guru yet.
What should i do ??
please help!!
I download the eterm0.9.3 tarball from www.eterm.org/download/

regards.

Eterm 0.9.3
Configuration:
--

  Source code location:   .
  Host System Type:   i686-redhat-linux-gnu
  Preprocessor:   gcc -I/usr/local/include
-I/usr/X11R6/include
  Compiler:   gcc -g -O2
  Linker: gcc -L/usr/local/lib -L/usr/X11R6/lib
-lImlib2 -lttf -ldl -L/usr
/local/lib -lImlib2 -lfreetype -lz -L/usr/X11R6/lib -lX11 -lXext -ldl
-lm  -lSM -lICE-lSM -
lICE -lXmu -lutempter -last -lXext -lX11 -lutil -lm
  Install path:   /usr/local

  See src/feature.h for further configuration information.

  Now type 'make' to build Eterm 0.9.3.


error from make:

[EMAIL PROTECTED] Eterm-0.9.3]# make
make  all-recursive
make[1]: Entering directory `/usr/local/Eterm-0.9.3'
Making all in src
make[2]: Entering directory `/usr/local/Eterm-0.9.3/src'
/bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I..
-I/usr/local/include -I/us
r/X11R6/include   -g -O2 -c actions.c
../libtool: line 323: s,^.*/,,g: Aucun fichier ou répertoire de ce type
../libtool: line 648: -e: command not found
*** Warning: inferring the mode of operation is deprecated.
*** Future versions of Libtool will require --mode=MODE be specified.
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 942: -e: command not found
../libtool: line 970: -e: command not found
../libtool: line 993: -e: command not found
: compile: cannot determine name of library object from `'
make[2]: *** [actions.lo] Erreur 1
make[2]: Leaving directory `/usr/local/Eterm-0.9.3/src'
make[1]: *** [all-recursive] Erreur 1
make[1]: Leaving directory `/usr/local/Eterm-0.9.3'
make: *** [all-recursive-am] Erreur 2







---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm-0.9.3 + deadkeys not working right ?

2005-05-11 Thread Nathan Ingersoll
This may or may not be useful, but with altivec you can print the
vector registers as such:
(gdb) p $v1
$1 = {
  uint128 = 0x7fffdead7fffdead7fffdead7fffdead, 
  v4_float = {nan(0x7fdead), nan(0x7fdead), nan(0x7fdead), nan(0x7fdead)}, 
  v4_int32 = {2147475117, 2147475117, 2147475117, 2147475117}, 
  v8_int16 = {32767, -8531, 32767, -8531, 32767, -8531, 32767, -8531}, 
  v16_int8 = \177?\177?\177?\177?
}
(gdb) 

MMX/SSE may be similar, but others can probably provide better info.

On 5/10/05, Tres Melton [EMAIL PROTECTED] wrote:
 
 BTW, do you know how to get gdb to display the contents of a xmm
 register on AMD64 in hex?  info all-registers and variants only show
 the values as floats.  (The registers are shared between the SSE and x87
 stuff but I'm not using x87).  And I tried gdb ver. 6.0-r1 in Gentoo,
 6.3 from gnu.org and the latest cvs.
 
 --
 Tres
 
 
 ---
 This SF.Net email is sponsored by Oracle Space Sweepstakes
 Want to be the first software developer in space?
 Enter now for the Oracle Space Sweepstakes!
 http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



Re: [E-devel] Eterm-0.9.3 + deadkeys not working right ?

2005-05-10 Thread Michael Jennings
On Monday, 09 May 2005, at 20:33:33 (-0400),
Mike Frysinger wrote:

 i'm hoping someone out there can help since i'm really not familiar
 with deadkeys at all ...
 
 basically, after upgrading eterm from 0.9.2 to 0.9.3, this user's
 deadkeys stopped working properly.  downgrading libast to 0.5 and
 then building eterm 0.9.3 against that seemed to have no effect

This has already been discussed here and fixed in CVS.  See my March
15th ChangeLog entry.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 Who needs women?  Give me gcc and a couple megs of source code, and
  I'm good for at least an hour or so


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm-0.9.3 + deadkeys not working right ?

2005-05-10 Thread Mike Frysinger
On Tuesday 10 May 2005 03:03 pm, Michael Jennings wrote:
 On Monday, 09 May 2005, at 20:33:33 (-0400),

 Mike Frysinger wrote:
  i'm hoping someone out there can help since i'm really not familiar
  with deadkeys at all ...
 
  basically, after upgrading eterm from 0.9.2 to 0.9.3, this user's
  deadkeys stopped working properly.  downgrading libast to 0.5 and
  then building eterm 0.9.3 against that seemed to have no effect

 This has already been discussed here and fixed in CVS.  See my March
 15th ChangeLog entry.

yep, that did the trick alright, thanks :)

for any other distribution maintainers, you can grab the patch which applies 
against 0.9.3 here:
http://viewcvs.gentoo.org/x11-terms/eterm/files/eterm-0.9.3-deadkeys.patch
-mike


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm-0.9.3 + deadkeys not working right ?

2005-05-10 Thread Michael Jennings
On Tuesday, 10 May 2005, at 20:35:38 (-0400),
Mike Frysinger wrote:

 for any other distribution maintainers, you can grab the patch which applies 
 against 0.9.3 here:
 http://viewcvs.gentoo.org/x11-terms/eterm/files/eterm-0.9.3-deadkeys.patch

Please note that only the last hunk of this patch corrects the
deadkeys issue.  The other hunks are needed to correct the saving of
the cut_chars attribute.  They're really 2 separate patches; they
were just committed at the same time.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 I believe God's grace is so incredible that He saves those who so
  much as grunt in His general direction, as long as it is from their
  heart.-- Rick Durrance, Youth Pastor, Wilmore UMC (paraphrased)


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Eterm-0.9.3 + deadkeys not working right ?

2005-05-09 Thread Mike Frysinger
i'm hoping someone out there can help since i'm really not familiar with 
deadkeys at all ...

basically, after upgrading eterm from 0.9.2 to 0.9.3, this user's deadkeys 
stopped working properly.  downgrading libast to 0.5 and then building eterm 
0.9.3 against that seemed to have no effect

http://bugs.gentoo.org/show_bug.cgi?id=91878
-mike


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Eterm-0.9.3 + deadkeys not working right ?

2005-05-09 Thread Tres Melton
Mike / Tobias,

I don't use deadkeys myself, being American and only speaking
programming languages, but after a few minutes of Googling I would guess
that it started here:

Commit by mej  ::  eterm/Eterm/ (ChangeLog configure.in): 
Mon Apr 18 16:00:22 2005 Michael Jennings (mej)
Remove unused NO_XLOCALE crap and do it right.

and in configure.in:

# check if we need X_LOCALE definition
AC_CHECK_LIB(X11, _Xsetlocale, AC_DEFINE(X_LOCALE, , [X locale.]),
AC_DEFINE(NO_XLOCALE, , [No X locale.]))

# For multibyte selection handling
#if test $MULTICHAR_ENCODING != none; then
  AC_CHECK_LIB(Xmu, XmuInternAtom)
#fi

and from the XFree86-4.3.0 Changelog:
http://www.hupo.org.cn/docs/linuxdoc/XFree86-4.3.0/CHANGELOG

952. A more complete set of dead accent/space compose sequences, add
  Multi_key slash for letters with a stroke, and add some
  combos for exponent characters, katakana voiced sounds, etc to
  the en_US.UTF-8 compose file (#5646, David Monniaux).

The bottom line is that a X_LOCALE needs to be specified so that things
know what to do with deadkey sequences.  The same sequence can generate
different things in different locations.  I would ask what X_LOCALE is
set to and try changing it.  You (Mike) know more about this automagical
crap than I but I'd bet money (a little) that the problem is related to
MeJ's change on 18 April 2005.

Hope that helps.

BTW, do you know how to get gdb to display the contents of a xmm
register on AMD64 in hex?  info all-registers and variants only show
the values as floats.  (The registers are shared between the SSE and x87
stuff but I'm not using x87).  And I tried gdb ver. 6.0-r1 in Gentoo,
6.3 from gnu.org and the latest cvs.


-- 
Tres



---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eterm-0.9.3 weird overlines

2004-12-29 Thread Mike Frysinger
On Wednesday 29 December 2004 01:44 am, Michael Jennings wrote:
 On Tuesday, 28 December 2004, at 19:43:36 (-0500),

 Mike Frysinger wrote:
  here's a small python snippet that reproduces this behavior:
  $ python -c 'print \x1b[31;06mhi dad;'

   ^^
 This is correct behavior.  The 6 modifier is overscore.  The fact
 that it didn't work before was a bug.

ah, got a nice URL from my Gentoo peeps
http://en.wikipedia.org/wiki/ANSI_escape_code

according to this, 6 is not 'overscore', but 'rapid blink' ... 49 is listed as 
'superscript' though ...

either way, 6 is not what we at Gentoo want :)
-mike


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eterm-0.9.3 weird overlines

2004-12-29 Thread Michael Jennings
On Wednesday, 29 December 2004, at 14:09:34 (-0500),
Mike Frysinger wrote:

 ive looked in the past for a reference manual for these kind of
 modifiers but was unable to find any ...
 
 have you a URL or resource handy ? :)

Depends.  For xterm, here's what you want:

http://rtfm.etla.org/xterm/ctlseq.html

For Eterm, it's the technical reference:

http://www.eterm.org/docs/view.php?doc=ref



 ah, got a nice URL from my Gentoo peeps
 http://en.wikipedia.org/wiki/ANSI_escape_code

That's valid for old-style TTY terminals like DEC and Wyse.  There's
not always a 1-to-1 correlation with X-based terms.

 according to this, 6 is not 'overscore', but 'rapid blink' ... 49 is
 listed as 'superscript' though ...

In Eterm (and probably rxvt), 6 is overscore.  If you want to see it,
look in term.c on line 1621.  You can also find the other SGR mode
sequence values there.

 either way, 6 is not what we at Gentoo want :)

Then don't ask for it. :)

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 The breakup was mutual, but it was more mutual on my part.
-- Beth O'Hara


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] eterm-0.9.3 weird overlines

2004-12-28 Thread Mike Frysinger
so i just upgraded to eterm-0.9.3 / libast-0.6.1 and i noticed that sometimes 
i get these overlines when using some apps ... these lines didnt exist 
before ...

i happened to have some eterm-0.9.2 / libast-0.5 still running, so i compared 
them and took a screenshot:
http://dev.gentoo.org/~vapier/eterm-funk-lines.png

here's a small python snippet that reproduces this behavior:
$ python -c 'print \x1b[31;06mhi dad;'
-mike


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eterm-0.9.3 weird overlines

2004-12-28 Thread Michael Jennings
On Tuesday, 28 December 2004, at 19:43:36 (-0500),
Mike Frysinger wrote:

 so i just upgraded to eterm-0.9.3 / libast-0.6.1 and i noticed that
 sometimes i get these overlines when using some apps ... these lines
 didnt exist before ...
 
 i happened to have some eterm-0.9.2 / libast-0.5 still running, so i
 compared them and took a screenshot:
 http://dev.gentoo.org/~vapier/eterm-funk-lines.png
 
 here's a small python snippet that reproduces this behavior:
 $ python -c 'print \x1b[31;06mhi dad;'
  ^^
This is correct behavior.  The 6 modifier is overscore.  The fact
that it didn't work before was a bug.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 Because I want you to understand what my music means to me...and
  what it means for me to be able to share it with someone.
   -- Captain Jean-Luc Picard (Patrick Stewart), ST:TNG, Lessons


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel