gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 44/150: build: fix termios issue on android cross-c


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 44/150: build: fix termios issue on android cross-compile
Date: Fri, 30 Mar 2018 16:48:18 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 1eb4f5ac9d9b9a73e1dba890636b599037bd643d
Author: Ben Greear <address@hidden>
AuthorDate: Wed Jan 31 23:52:05 2018 +0100

    build: fix termios issue on android cross-compile
    
    Bug: https://curl.haxx.se/mail/lib-2018-01/0122.html
    Signed-off-by: Ben Greear <address@hidden>
---
 src/tool_cb_prg.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/tool_cb_prg.c b/src/tool_cb_prg.c
index 286a3ffbc..60a3804f9 100644
--- a/src/tool_cb_prg.c
+++ b/src/tool_cb_prg.c
@@ -35,6 +35,12 @@
 
 #include "memdebug.h" /* keep this as LAST include */
 
+#ifdef HAVE_TERMIOS_H
+#  include <termios.h>
+#elif defined(HAVE_TERMIO_H)
+#  include <termio.h>
+#endif
+
 /* 200 values generated by this perl code:
 
    my $pi = 3.1415;

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]