Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
585 B
Diff
33 lines
585 B
Diff
diff --git a/Makefile b/Makefile
|
|
index 22710f3d933..22effc848cf 100644
|
|
--- a/lib/libnetbsd/Makefile
|
|
+++ b/lib/libnetbsd/Makefile
|
|
@@ -9,6 +9,26 @@ CFLAGS+= -I${.CURDIR}
|
|
|
|
SRCS+= efun.c sockaddr_snprintf.c strsuftoll.c util.c util.h
|
|
|
|
-INTERNALLIB=
|
|
+INCSGROUPS= INCS SYSINCS NETINETINCS
|
|
+
|
|
+INCS+= \
|
|
+ glob.h \
|
|
+ pthread.h \
|
|
+ rmd160.h \
|
|
+ sha1.h \
|
|
+ sha2.h \
|
|
+ stdlib.h \
|
|
+ util.h
|
|
+
|
|
+SYSINCSDIR= ${INCLUDEDIR}/sys
|
|
+SYSINCS+= \
|
|
+ sys/cdefs.h \
|
|
+ sys/event.h \
|
|
+ sys/types.h \
|
|
+ sys/wait.h
|
|
+
|
|
+NETINETINCSDIR= ${INCLUDEDIR}/netinet
|
|
+NETINETINCS+= \
|
|
+ netinet/in.h
|
|
|
|
.include <bsd.lib.mk>
|