Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
dhcp
Commits
2394b26b
Commit
2394b26b
authored
Oct 08, 2007
by
David Hankins
Browse files
- Additional compilation problems on HP/UX have been repaired.
[ISC-Bugs #17201]
parent
8bfe717e
Changes
3
Hide whitespace changes
Inline
Side-by-side
RELNOTES
View file @
2394b26b
...
...
@@ -90,6 +90,8 @@ suggested fixes to <dhcp-users@isc.org>.
state
is
recovered
from
dhcpd
.
leases
).
Arbitrary
user
-
specified
binding
scopes
(
'set var = "value";'
)
are
not
yet
supported
.
-
Additional
compilation
problems
on
HP
/
UX
have
been
repaired
.
Changes
since
4.0.0
a2
-
Fix
for
startup
where
there
are
no
IPv4
addresses
on
an
interface
.
...
...
common/dlpi.c
View file @
2394b26b
...
...
@@ -225,8 +225,8 @@ int if_register_dlpi (info)
info
->
hw_address
.
hbuf
[
0
]
=
HTYPE_FDDI
;
break
;
default:
log_fatal
(
"%s: unsupported DLPI MAC type %l
d
"
,
info
->
name
,
dlp
->
info_ack
.
dl_mac_type
);
log_fatal
(
"%s: unsupported DLPI MAC type %l
u
"
,
info
->
name
,
(
unsigned
long
)
dlp
->
info_ack
.
dl_mac_type
);
break
;
}
/*
...
...
@@ -1353,8 +1353,8 @@ get_hw_addr(const char *name, struct hardware *hw) {
hw
->
hbuf
[
0
]
=
HTYPE_FDDI
;
break
;
default:
log_fatal
(
"%s: unsupported DLPI MAC type %l
d
"
,
name
,
dlp
->
info_ack
.
dl_mac_type
);
log_fatal
(
"%s: unsupported DLPI MAC type %l
u
"
,
name
,
(
unsigned
long
)
dlp
->
info_ack
.
dl_mac_type
);
}
/*
...
...
configure.ac
View file @
2394b26b
...
...
@@ -162,6 +162,9 @@ AC_SEARCH_LIBS(inet_aton, [socket nsl], ,
# Check for a standalone regex library.
AC_SEARCH_LIBS(regcomp, [regex])
# For HP/UX we need -lipv6 for if_nametoindex, perhaps others.
AC_SEARCH_LIBS(if_nametoindex, [ipv6])
# check for /dev/random (declares HAVE_DEV_RANDOM)
AC_CHECK_FILE(/dev/random,
AC_DEFINE([HAVE_DEV_RANDOM], [1],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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