[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [vile] compiling on OSX with proper resizing
From: |
Thomas Dickey |
Subject: |
Re: [vile] compiling on OSX with proper resizing |
Date: |
Wed, 7 Jan 2009 15:53:04 -0500 (EST) |
On Wed, 7 Jan 2009, Daniel Ashbrook wrote:
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?
The simplest is in your $CPPFLAGS environment variable, e.g.
export CPPFLAGS=-DSIGWINCH=28
(assuming it's initially unset...). Then the configure script will add
the preset $CPPFLAGS to the compile-time CPPFLAGS, and it should just
work.
--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
Re: [vile] compiling on OSX with proper resizing, Thomas Dickey, 2009/01/07