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
3b092846
Commit
3b092846
authored
Feb 20, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 20, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problems reported by Donald Page, PR 105-107.
parent
f0e0df3f
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
2 deletions
+16
-2
configure
configure
+1
-1
configure.in
configure.in
+1
-1
config.h.in
include/config.h.in
+3
-0
port.c
misc/port.c
+1
-0
winsock.c
misc/winsock.c
+3
-0
winsock_dns.c
misc/winsock_dns.c
+7
-0
No files found.
configure
View file @
3b092846
...
@@ -3591,7 +3591,7 @@ else
...
@@ -3591,7 +3591,7 @@ else
fi
fi
done
done
for
ac_hdr
in
wctype.h sys/syscall.h syscall.h sys/param.h sys/vfs.h sys/mount.h sys/statfs.h float.h linux/cdrom.h linux/ucdrom.h sys/cdio.h sys/filio.h sys/modem.h strings.h sys/strtio.h dlfcn.h unistd.h sys/sockio.h net/if.h netinet/in.h sys/file.h libio.h curses.h ncurses.h elf.h
for
ac_hdr
in
wctype.h sys/syscall.h syscall.h sys/param.h sys/vfs.h sys/mount.h sys/statfs.h float.h linux/cdrom.h linux/ucdrom.h sys/cdio.h sys/filio.h sys/modem.h strings.h sys/strtio.h dlfcn.h unistd.h sys/sockio.h net/if.h netinet/in.h sys/file.h libio.h curses.h ncurses.h elf.h
resolv.h
do
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
...
...
configure.in
View file @
3b092846
...
@@ -383,7 +383,7 @@ fi
...
@@ -383,7 +383,7 @@ fi
dnl **** Check for functions and header files ****
dnl **** Check for functions and header files ****
AC_CHECK_FUNCS(clone getpagesize memmove sendmsg sigaltstack strerror stricmp tcgetattr timegm usleep wait4 waitpid vfscanf)
AC_CHECK_FUNCS(clone getpagesize memmove sendmsg sigaltstack strerror stricmp tcgetattr timegm usleep wait4 waitpid vfscanf)
AC_CHECK_HEADERS(wctype.h sys/syscall.h syscall.h sys/param.h sys/vfs.h sys/mount.h sys/statfs.h float.h linux/cdrom.h linux/ucdrom.h sys/cdio.h sys/filio.h sys/modem.h strings.h sys/strtio.h dlfcn.h unistd.h sys/sockio.h net/if.h netinet/in.h sys/file.h libio.h curses.h ncurses.h elf.h)
AC_CHECK_HEADERS(wctype.h sys/syscall.h syscall.h sys/param.h sys/vfs.h sys/mount.h sys/statfs.h float.h linux/cdrom.h linux/ucdrom.h sys/cdio.h sys/filio.h sys/modem.h strings.h sys/strtio.h dlfcn.h unistd.h sys/sockio.h net/if.h netinet/in.h sys/file.h libio.h curses.h ncurses.h elf.h
resolv.h
)
AC_HEADER_STAT()
AC_HEADER_STAT()
AC_C_CONST()
AC_C_CONST()
AC_TYPE_SIZE_T()
AC_TYPE_SIZE_T()
...
...
include/config.h.in
View file @
3b092846
...
@@ -183,6 +183,9 @@
...
@@ -183,6 +183,9 @@
/* Define if you have the <netinet/in.h> header file. */
/* Define if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
#undef HAVE_NETINET_IN_H
/* Define if you have the <resolv.h> header file. */
#undef HAVE_RESOLV_H
/* Define if you have the <soundcard.h> header file. */
/* Define if you have the <soundcard.h> header file. */
#undef HAVE_SOUNDCARD_H
#undef HAVE_SOUNDCARD_H
...
...
misc/port.c
View file @
3b092846
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*/
*/
#include "config.h"
#include "config.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/stat.h>
...
...
misc/winsock.c
View file @
3b092846
...
@@ -44,6 +44,9 @@
...
@@ -44,6 +44,9 @@
#include <netdb.h>
#include <netdb.h>
#include <unistd.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdlib.h>
#ifdef HAVE_RESOLV_H
# include <resolv.h>
#endif
#include "wine/winbase16.h"
#include "wine/winbase16.h"
#include "winsock.h"
#include "winsock.h"
...
...
misc/winsock_dns.c
View file @
3b092846
...
@@ -33,6 +33,13 @@
...
@@ -33,6 +33,13 @@
#ifdef HAVE_SYS_FILE_H
#ifdef HAVE_SYS_FILE_H
# include <sys/file.h>
# include <sys/file.h>
#endif
#endif
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#ifdef HAVE_RESOLV_H
# include <resolv.h>
#endif
#include "winsock.h"
#include "winsock.h"
#include "heap.h"
#include "heap.h"
...
...
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