Module Name: src
Committed By: rin
Date: Sat Jun 29 08:00:06 UTC 2024
Modified Files:
src/sys/lib/libsa: Makefile
Log Message:
libsa: Hook getopt.c
Its declaration (as well as `optarg` et al.) is already in stand.h.
To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/sys/lib/libsa/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/lib/libsa/Makefile
diff -u src/sys/lib/libsa/Makefile:1.97 src/sys/lib/libsa/Makefile:1.98
--- src/sys/lib/libsa/Makefile:1.97 Sat Oct 7 12:15:54 2023
+++ src/sys/lib/libsa/Makefile Sat Jun 29 08:00:06 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.97 2023/10/07 12:15:54 rin Exp $
+# $NetBSD: Makefile,v 1.98 2024/06/29 08:00:06 rin Exp $
LIB= sa
LIBISPRIVATE?= yes
@@ -29,11 +29,13 @@ CPPFLAGS= -I${SADIR} ${SACPPFLAGS} ${SAM
.include <bsd.own.mk>
-.PATH.c: ${SADIR} ${.PARSEDIR}/../../../common/lib/libc/string
+.PATH.c: ${SADIR} \
+ ${.PARSEDIR}/../../../common/lib/libc/stdlib \
+ ${.PARSEDIR}/../../../common/lib/libc/string
# stand routines
SRCS+= alloc.c atoi.c errno.c exit.c files.c \
- getfile.c gets.c globals.c \
+ getfile.c getopt.c gets.c globals.c \
panic.c printf.c qsort.c snprintf.c strerror.c \
subr_prf.c twiddle.c checkpasswd.c