Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
16a37ce4
Commit
16a37ce4
authored
Sep 10, 2002
by
Per Cederqvist
Browse files
Cast INADDR_NONE to uint32_t.
parent
cc1c5196
Changes
1
Show whitespace changes
Inline
Side-by-side
src/libraries/libisc-new/configure.in
View file @
16a37ce4
...
...
@@ -19,7 +19,7 @@ dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl Process this file with autoconf to produce a configure script.
AC_REVISION($Revision: 1.1
3
$)dnl
AC_REVISION($Revision: 1.1
4
$)dnl
AC_PREREQ(2.53)
AC_INIT(isc, 1.01)
AC_CONFIG_SRCDIR([src/isc_master.c])
...
...
@@ -89,7 +89,7 @@ AC_REPLACE_FUNCS(inet_aton)
[if test $ac_cv_func_inet_aton = no
then]
AC_CHECK_DECL([INADDR_NONE],,
AC_DEFINE([INADDR_NONE],[(-1)], [Error indicator for inet_addr]),
AC_DEFINE([INADDR_NONE],[(
(uint32_t)
-1)], [Error indicator for inet_addr]),
[#include <netinet/in.h>])
[fi]
...
...
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