aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>2023-09-11 08:38:46 +0000
committerDoug Rabson <dfr@FreeBSD.org>2023-09-12 12:22:21 +0000
commit78847e1e592789dc85bddf4d2f1d9a8ce4614ff1 (patch)
treeda3b0271aa65bb9cb1658235e96da0b8a29b74eb /include
parentd0266fbab9b8eafc1aedffbedf66dedb4774794c (diff)
downloadsrc-78847e1e592789dc85bddf4d2f1d9a8ce4614ff1.tar.gz
src-78847e1e592789dc85bddf4d2f1d9a8ce4614ff1.zip
pkgbase: Move headers and libs out of runtime and utilities
Headers from src/include were in the runtime-dev package but subdirectories of src/include ended up in utilities-dev by default. Neither package is a good choice - the headers in src/include are not useful without the libraries contained in clibs-dev. This moves the standard C headers to clibs-dev (C++ headers are already in this package). While working on this, I found that various clang libraries and headers were also bundled into utilities-dev by default so these are also moved to clang-dev. I also added a FreeBSD-build-essential meta package to make it simple to install all the toolchain parts. PR: 254173 Reviewed byb: manu MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D41815
Diffstat (limited to 'include')
-rw-r--r--include/Makefile2
-rw-r--r--include/Makefile.inc2
2 files changed, 3 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile
index bc1cfd96dfc9..736a47854534 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -4,7 +4,7 @@
.include <src.opts.mk>
-PACKAGE=runtime
+PACKAGE=clibs
CLEANFILES= osreldate.h version
SUBDIR= arpa protocols rpcsvc rpc xlocale
.if ${MACHINE_CPUARCH} == "amd64"
diff --git a/include/Makefile.inc b/include/Makefile.inc
new file mode 100644
index 000000000000..14d7bf96e6bc
--- /dev/null
+++ b/include/Makefile.inc
@@ -0,0 +1,2 @@
+# Make sure all our subdirectory headers end up in clibs-dev
+PACKAGE=clibs