aterm: fix musl pty allocation

Fixes #2361
This commit is contained in:
Michael Gehring 2016-03-05 22:28:14 +00:00
parent 73327fc822
commit 8c6f96b6ad
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
--- src/command.c.orig 2016-03-05 22:06:06.710989576 +0000
+++ src/command.c 2016-03-05 22:06:36.743614116 +0000
@@ -556,7 +556,7 @@
ptydev = ttydev = _getpty(&fd, O_RDWR | O_NDELAY, 0622, 0);
if (ptydev == NULL)
goto Failed;
-#elif defined (__svr4__) || defined(__CYGWIN32__) || defined(__lnx21__)
+#elif defined (__svr4__) || defined(__CYGWIN32__) || defined(__lnx21__) || defined(__linux__)
{
extern char *ptsname();

View File

@ -1,7 +1,7 @@
# Template file for 'aterm'.
pkgname=aterm
version=1.0.1
revision=2
revision=3
build_style=gnu-configure
configure_args="--enable-transparency --enable-kanji --enable-big5
--enable-greek --enable-thai"