mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
554570ea95
Split the man-pages into the actual texts and MLINKS, of which there are over a hundred. The vendor used the .so macro, but either it was not used properly, or there is a bug in our man(1). Either way, MLINKS seems cleaner. Move the text in the post-install target into pkg-message and arrange for showing it after installing the port. The last two items were not shown to maintainer, but are not expected to raise objections. TODO -- add WITHOUT_X11 compliance -- a must for some deployments. Approved by: demon (maintainer).
14 lines
402 B
Plaintext
14 lines
402 B
Plaintext
--- src/host.c Wed Sep 26 19:35:18 2001
|
|
+++ src/host.c Thu Oct 31 13:57:18 2002
|
|
@@ -992,9 +992,7 @@
|
|
perror("ioctl");
|
|
goto bail;
|
|
}
|
|
- /* On some FreeBSD systems: */
|
|
- /* if (IFF_UP & req.ifr_flags) { */
|
|
- if (IFF_UP & req.ifr_ifru.ifru_flags) {
|
|
+ if (IFF_UP & req.ifr_flags) {
|
|
if (nip > 0 && !(nip % 10))
|
|
iplist = TREALLOC(iplist, (nip + 10), struct in_addr);
|
|
iplist[nip++] =
|