summaryrefslogtreecommitdiffstats
path: root/bin/chflags
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2000-02-05 18:42:36 +0000
committerjoe <joe@FreeBSD.org>2000-02-05 18:42:36 +0000
commitb57f9be4b788fc9ec1fdcfb1979d076f6dfb6be6 (patch)
tree5948d533f1f00d26c5add7b73cba4ee62f634a1b /bin/chflags
parent3f518216d3568e20b83d41ad700ea49f6fb54223 (diff)
downloadFreeBSD-src-b57f9be4b788fc9ec1fdcfb1979d076f6dfb6be6.zip
FreeBSD-src-b57f9be4b788fc9ec1fdcfb1979d076f6dfb6be6.tar.gz
Revert part of the last commit, remove {g|s}etflags from the libc
interface, and statically link them to the programs using them. These functions, upon reflection and discussion, are too generically named for a library interface with such specific functionality. Also the api that they use, whilst ok for private use, isn't good enough for a libc function. Additionally there were complications with the build/install-world process. It depends heavily upon xinstall, which got broken by the change in api, and caused bootstrap problems and general mayhem. There is work in progress to address future problems that may be caused by changes in install-chain tools, and better names for {g|s}etflags can be derived when some future program requires them. For now the code has been left in src/lib/libc/gen (it started off in src/bin/ls). It's important to provide library functions for manipulating file flag strings if we ever want this interface to be adopted outside of the source tree, but now isn't necessarily the right moment with 4.0-release just around the corner. Approved: jkh
Diffstat (limited to 'bin/chflags')
-rw-r--r--bin/chflags/Makefile2
-rw-r--r--bin/chflags/chflags.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/bin/chflags/Makefile b/bin/chflags/Makefile
index 30b6699..b545bfa 100644
--- a/bin/chflags/Makefile
+++ b/bin/chflags/Makefile
@@ -5,5 +5,7 @@ NOSHARED?=yes
PROG= chflags
CFLAGS+=-Wall
+.PATH: ${.CURDIR}/../../lib/libc/gen
+SRCS= chflags.c setflags.c
.include <bsd.prog.mk>
diff --git a/bin/chflags/chflags.c b/bin/chflags/chflags.c
index daeab4d..784243e 100644
--- a/bin/chflags/chflags.c
+++ b/bin/chflags/chflags.c
@@ -56,6 +56,8 @@ static const char rcsid[] =
#include <string.h>
#include <unistd.h>
+extern u_long setflags __P((char **, u_long *, u_long *));
+
void usage __P((void));
int
OpenPOWER on IntegriCloud