[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [vile] compiling on OSX with proper resizing
From: |
Daniel Ashbrook |
Subject: |
Re: [vile] compiling on OSX with proper resizing |
Date: |
Wed, 07 Jan 2009 15:48:18 -0500 |
User-agent: |
Thunderbird 2.0.0.19 (Macintosh/20081209) |
This is probably it in
/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/signal.h
#if (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
#define SIGWINCH 28 /* window size changes */
#define SIGINFO 29 /* information request */
#endif
Anything I can do on the vile end to get it to work without breaking
other things?
dan
Thomas Dickey wrote:
> On Wed, 7 Jan 2009, Daniel Ashbrook wrote:
>
>> I'm trying to compile the latest vile on OSX. The vile that one can get
>> from Fink (http://pdb.finkproject.org/pdb/package.php/vile) is pretty
>> out of date (9.4), but has the very nice property that when you resize
>> the Terminal window, vile realizes and resizes its content.
>> Unfortunately, I can't get that to happen when I compile it myself.
>>
>> The configure flags for the Fink package's version, according to the
>> above page, are:
>>
>> --mandir=%p/share/man --with-locale --with-ncurses
>>
>> The only thing that I assume would make the difference is
>> --with-ncurses, so I tried that, but no dice (it doesn't work without
>> that flag, either). It's possible my ncurses is too old; I'm using the
>> stock version that comes with OSX, which is 5.5.20051010.
>>
>> Any advice?
>
> It's probably because OSX hides the #define for SIGWINCH inside an ifdef.
> I did fixes in xterm and ncurses for this; looks like I didn't apply
> that to vile (it's implemented as a configure check which determines the
> system's value of SIGWINCH and adds it as a -D option to the compiler
> flags).
>
Re: [vile] compiling on OSX with proper resizing, Thomas Dickey, 2009/01/07