From 0f26fe9d9a05717c76a26b034f09dc4f795368a2 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Mon, 25 Sep 2023 00:02:16 +0200 Subject: [PATCH] Add dependency on sysctl of baseunix for all bsd OSes --- rtl/dragonfly/Makefile.fpc | 1 + rtl/freebsd/Makefile.fpc | 1 + rtl/netbsd/Makefile.fpc | 1 + rtl/openbsd/Makefile.fpc | 1 + 4 files changed, 4 insertions(+) diff --git a/rtl/dragonfly/Makefile.fpc b/rtl/dragonfly/Makefile.fpc index 5148b87462..7689627580 100644 --- a/rtl/dragonfly/Makefile.fpc +++ b/rtl/dragonfly/Makefile.fpc @@ -66,6 +66,7 @@ BSD_DEPS_OS=$(SYSCALLUNIT)$(PPUEXT) DYNLIBS_DEPS_OS=$(DLUNIT)$(PPUEXT) DYNLIBSINCDIR=$(UNIXINC) SYSCALL_DEPS_OS=sysnr.inc $(BSDPROCINC)/syscallh.inc +BASEUNIX_DEPS_OS=$(SYSCTLUNIT)$(PPUEXT) SYSTEMUNIT=system loaders+=gprt0 diff --git a/rtl/freebsd/Makefile.fpc b/rtl/freebsd/Makefile.fpc index 4c4d364761..b34696f368 100644 --- a/rtl/freebsd/Makefile.fpc +++ b/rtl/freebsd/Makefile.fpc @@ -61,6 +61,7 @@ BSDPROCINC=$(BSDINC)/$(CPU_TARGET) UNIXINC=$(RTL)/unix UNITPREFIX=rtl CPU_UNITS= +BASEUNIX_DEPS_OS=$(SYSCTLUNIT)$(PPUEXT) BSD_DEPS_OS=$(SYSCALLUNIT)$(PPUEXT) DYNLIBS_DEPS_OS=$(DLUNIT)$(PPUEXT) DYNLIBSINCDIR=$(UNIXINC) diff --git a/rtl/netbsd/Makefile.fpc b/rtl/netbsd/Makefile.fpc index 11efa089df..6ffbe83db8 100644 --- a/rtl/netbsd/Makefile.fpc +++ b/rtl/netbsd/Makefile.fpc @@ -60,6 +60,7 @@ UNIXINC=$(RTL)/unix UNITPREFIX=rtl TARGETPROCINC=$(RTL)/netbsd/$(CPU_TARGET) +BASEUNIX_DEPS_OS=$(SYSCTLUNIT)$(PPUEXT) BSD_DEPS_OS=$(SYSCALLUNIT)$(PPUEXT) DYNLIBS_DEPS_OS=$(DLUNIT)$(PPUEXT) DYNLIBSINCDIR=$(UNIXINC) diff --git a/rtl/openbsd/Makefile.fpc b/rtl/openbsd/Makefile.fpc index 138498372f..0dfbf52681 100644 --- a/rtl/openbsd/Makefile.fpc +++ b/rtl/openbsd/Makefile.fpc @@ -59,6 +59,7 @@ UNIXINC=$(RTL)/unix UNITPREFIX=rtl TARGETPROCINC=$(RTL)/openbsd/$(CPU_TARGET) +BASEUNIX_DEPS_OS=$(SYSCTLUNIT)$(PPUEXT) BSD_DEPS_OS=$(SYSCALLUNIT)$(PPUEXT) DYNLIBS_DEPS_OS=$(DLUNIT)$(PPUEXT) DYNLIBSINCDIR=$(UNIXINC)