Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
a86e7fed
Commit
a86e7fed
authored
Mar 07, 2005
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check for in_addr_t
parent
a20d0817
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
configure.ac
configure.ac
+11
-0
No files found.
configure.ac
View file @
a86e7fed
...
@@ -224,6 +224,17 @@ AC_HEADER_TIME
...
@@ -224,6 +224,17 @@ AC_HEADER_TIME
AC_HEADER_SYS_WAIT
AC_HEADER_SYS_WAIT
AC_TYPE_SOCKLEN_T
AC_TYPE_SOCKLEN_T
AC_CREATE_STDINT_H(rfb/rfbint.h)
AC_CREATE_STDINT_H(rfb/rfbint.h)
AC_CACHE_CHECK([for in_addr_t],
inaddrt, [
AC_TRY_COMPILE([#include <sys/types.h>
#include <netinet/in.h>],
[in_addr_t foo; return 0;],
[inaddrt=yes],
[inaddrt=no]),
])
if test $inaddrt = no ; then
AC_CHECK_TYPE(in_addr_t, uint32_t)
fi
# Checks for library functions.
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MALLOC
...
...
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