Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7d5af655
Commit
7d5af655
authored
Dec 09, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Assume that termios.h is available on Unix.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f8faa8ce
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
15 deletions
+1
-15
configure
configure
+0
-6
configure.ac
configure.ac
+0
-1
serial.c
dlls/ntdll/unix/serial.c
+0
-2
config.h.in
include/config.h.in
+0
-3
serial.c
server/serial.c
+1
-3
No files found.
configure
View file @
7d5af655
...
@@ -8714,12 +8714,6 @@ then :
...
@@ -8714,12 +8714,6 @@ then :
printf
"%s
\n
"
"#define HAVE_SYSCALL_H 1"
>>
confdefs.h
printf
"%s
\n
"
"#define HAVE_SYSCALL_H 1"
>>
confdefs.h
fi
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"termios.h"
"ac_cv_header_termios_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_termios_h
"
=
xyes
then
:
printf
"%s
\n
"
"#define HAVE_TERMIOS_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"unistd.h"
"ac_cv_header_unistd_h"
"
$ac_includes_default
"
ac_fn_c_check_header_compile
"
$LINENO
"
"unistd.h"
"ac_cv_header_unistd_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_unistd_h
"
=
xyes
if
test
"x
$ac_cv_header_unistd_h
"
=
xyes
then
:
then
:
...
...
configure.ac
View file @
7d5af655
...
@@ -511,7 +511,6 @@ AC_CHECK_HEADERS(\
...
@@ -511,7 +511,6 @@ AC_CHECK_HEADERS(\
sys/vnode.h \
sys/vnode.h \
sys/wait.h \
sys/wait.h \
syscall.h \
syscall.h \
termios.h \
unistd.h \
unistd.h \
utime.h \
utime.h \
valgrind/memcheck.h \
valgrind/memcheck.h \
...
...
dlls/ntdll/unix/serial.c
View file @
7d5af655
...
@@ -31,9 +31,7 @@
...
@@ -31,9 +31,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#include <termios.h>
#endif
#include <unistd.h>
#include <unistd.h>
#include <fcntl.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/stat.h>
...
...
include/config.h.in
View file @
7d5af655
...
@@ -751,9 +751,6 @@
...
@@ -751,9 +751,6 @@
/* Define to 1 if you have the `tcdrain' function. */
/* Define to 1 if you have the `tcdrain' function. */
#undef HAVE_TCDRAIN
#undef HAVE_TCDRAIN
/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H
/* Define to 1 if you have the `thr_kill2' function. */
/* Define to 1 if you have the `thr_kill2' function. */
#undef HAVE_THR_KILL2
#undef HAVE_THR_KILL2
...
...
server/serial.c
View file @
7d5af655
...
@@ -31,14 +31,12 @@
...
@@ -31,14 +31,12 @@
#include <sys/time.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/types.h>
#include <time.h>
#include <time.h>
#include <termios.h>
#include <unistd.h>
#include <unistd.h>
#include <poll.h>
#include <poll.h>
#ifdef HAVE_UTIME_H
#ifdef HAVE_UTIME_H
#include <utime.h>
#include <utime.h>
#endif
#endif
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#include <sys/ioctl.h>
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment