summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2005-08-31 01:29:22 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2005-08-31 01:29:22 +0000
commit9a4a7da811d13d57ea2b01436092d14ae3423d9c (patch)
treeb8e4f70a5b0883c2bdbd52c2177fa4367f9e429c
parent8963144850a17aa961b53ad3b036eb71b628d111 (diff)
downloadlibssh-9a4a7da811d13d57ea2b01436092d14ae3423d9c.tar.gz
libssh-9a4a7da811d13d57ea2b01436092d14ae3423d9c.tar.xz
libssh-9a4a7da811d13d57ea2b01436092d14ae3423d9c.zip
cfmakeraw patch for configure.in
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@32 7dcaeef0-15fb-0310-b436-a5af3365683c
-rw-r--r--config.h.in2
-rwxr-xr-xconfigure3
-rw-r--r--configure.in2
-rw-r--r--sample.c2
4 files changed, 6 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in
index 9cf951c..cc22124 100644
--- a/config.h.in
+++ b/config.h.in
@@ -3,6 +3,8 @@
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
#undef HAVE_DOPRNT
+#undef HAVE_CFMAKERAW
+
/* Define to 1 if you have the `endpwent' function. */
#undef HAVE_ENDPWENT
diff --git a/configure b/configure
index dcc53c1..2281be3 100755
--- a/configure
+++ b/configure
@@ -5086,7 +5086,8 @@ done
-for ac_func in endpwent gethostbyaddr gethostbyname getpass memmove memset \
+
+for ac_func in endpwent gethostbyaddr gethostbyname getpass memmove memset cfmakeraw\
select socket strchr strdup strerror strstr poll
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
diff --git a/configure.in b/configure.in
index 7d1a72e..7f82991 100644
--- a/configure.in
+++ b/configure.in
@@ -60,7 +60,7 @@ AC_FUNC_REALLOC
AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
-AC_CHECK_FUNCS([endpwent gethostbyaddr gethostbyname getpass memmove memset \
+AC_CHECK_FUNCS([endpwent gethostbyaddr gethostbyname getpass memmove memset cfmakeraw\
select socket strchr strdup strerror strstr poll])
AC_CONFIG_FILES([Makefile
diff --git a/sample.c b/sample.c
index d1c0fb4..60125d6 100644
--- a/sample.c
+++ b/sample.c
@@ -80,7 +80,7 @@ int opts(int argc, char **argv){
return 0;
}
-#ifndef HAVE_PTY_H
+#ifndef HAVE_CFMAKERAW
static void cfmakeraw(struct termios *termios_p){
termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
termios_p->c_oflag &= ~OPOST;