aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authoraph <a.hewson@gmail.com>2014-01-31 18:10:18 +0000
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-01 10:34:04 -0300
commit2d00ead2e57653b771354a564f9a760c2ce0d18e (patch)
treec205d7000191c5f7f2f1a439bc5ac67524c4fc00 /src/os_unix.c
parent72cf89bce8e4230dbc161dc5606f48ef9884ba70 (diff)
downloadrneovim-2d00ead2e57653b771354a564f9a760c2ce0d18e.tar.gz
rneovim-2d00ead2e57653b771354a564f9a760c2ce0d18e.tar.bz2
rneovim-2d00ead2e57653b771354a564f9a760c2ce0d18e.zip
Fix build on OSX/Archlinux and add README
- remove SELinux dependency for now - OSX: find libintl.h - OSX: fix compile errors - OSX: use hack around gettext nonsense - fix gettext on ubuntu - work around Arch's lack of -ltermcap - add README.md
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 83a65cf9b5..cf50cfb28e 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -623,14 +623,6 @@ static char *signal_stack;
static void init_signal_stack() {
if (signal_stack != NULL) {
# ifdef HAVE_SIGALTSTACK
-# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
- || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
- /* missing prototype. Adding it to osdef?.h.in doesn't work, because
- * "struct sigaltstack" needs to be declared. */
- extern int sigaltstack __ARGS((const struct sigaltstack *ss,
- struct sigaltstack *oss));
-# endif
-
sigstk.ss_sp = signal_stack;
sigstk.ss_size = SIGSTKSZ;
sigstk.ss_flags = 0;