add strncasecmp.c to ports' libkern Makefile.inc's. When adding a new

source file to libkern, it should be added to _ALL_ ports makefiles if
it is machine-independent and used by machine-independent code (in
this case adosfs).  (There are several arguments that say that
strncasecmp should not be in libkern at all, and i think they're
good ones, but as long as ADOSFS needs it to link, it has to be here
for all architectures.)
This commit is contained in:
cgd 1996-04-13 01:17:27 +00:00
parent c4212ae7de
commit e70b1375c9
7 changed files with 17 additions and 15 deletions

View File

@ -1,9 +1,9 @@
# $NetBSD: Makefile.inc,v 1.3 1995/10/20 01:15:37 cgd Exp $
# $NetBSD: Makefile.inc,v 1.4 1996/04/13 01:17:27 cgd Exp $
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c bzero.S ffs.c strcat.c strcmp.c strcpy.c strlen.c strncmp.c \
strncpy.c scanc.c skpc.c locc.c htonl.c htons.c ntohl.c ntohs.c \
random.c
random.c strncasecmp.c
# `source' files built from m4 source
SRCS+= __divqu.S __divq.S __divlu.S __divl.S

View File

@ -1,6 +1,6 @@
# $Id: Makefile.inc,v 1.1 1996/01/31 23:44:43 mark Exp $
# $Id: Makefile.inc,v 1.2 1996/04/13 01:17:36 cgd Exp $
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c bzero.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncmp.c \
strncpy.c scanc.c skpc.c locc.c htonl.c htons.c ntohl.c ntohs.c \
div.S random.c
div.S random.c strncasecmp.c

View File

@ -1,5 +1,6 @@
# $NetBSD: Makefile.inc,v 1.9 1996/03/11 05:32:00 scottr Exp $
# $NetBSD: Makefile.inc,v 1.10 1996/04/13 01:17:41 cgd Exp $
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.S ffs.S strcat.S strcmp.S strcpy.S strlen.S strncmp.c \
strncpy.c scanc.S skpc.S locc.S htonl.S htons.S ntohl.S ntohs.S
strncpy.c scanc.S skpc.S locc.S htonl.S htons.S ntohl.S ntohs.S \
strncasecmp.c

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile.inc,v 1.3 1994/10/26 06:39:40 cgd Exp $
# $NetBSD: Makefile.inc,v 1.4 1996/04/13 01:17:46 cgd Exp $
#
# There are likely more that we will notice when we go native
SRCS+= random.c scanc.c skpc.c strcat.c strcpy.c strncmp.c strncpy.c
SRCS+= random.c scanc.c skpc.c strcat.c strcpy.c strncmp.c strncpy.c \
strncasecmp.c

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile.inc,v 1.6 1995/11/30 01:00:10 jtc Exp $
# $NetBSD: Makefile.inc,v 1.7 1996/04/13 01:17:50 cgd Exp $
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncmp.c strncpy.c \
scanc.c skpc.c locc.c \
scanc.c skpc.c locc.c strncasecmp.c \
htonl.S htons.S ntohl.S ntohs.S

View File

@ -1,8 +1,9 @@
# $NetBSD: Makefile.inc,v 1.10 1995/10/07 22:26:53 mycroft Exp $
# $NetBSD: Makefile.inc,v 1.11 1996/04/13 01:17:53 cgd Exp $
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c bzero.S strcat.c strcmp.c strcpy.c strlen.S strncmp.c \
strncpy.c htonl.S htons.S ntohl.S ntohs.S scanc.c skpc.c memset.c
strncpy.c htonl.S htons.S ntohl.S ntohs.S scanc.c skpc.c memset.c \
strncasecmp.c
SRCS+= umul.S mul.S rem.S sdiv.S udiv.S umul.S urem.S
SRCS+= mul.S saveregs.S umul.S

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile.inc,v 1.1 1995/04/18 21:59:46 ragge Exp $
# $NetBSD: Makefile.inc,v 1.2 1996/04/13 01:17:58 cgd Exp $
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
strcat.c strcmp.c strcpy.c strlen.c strncmp.c \
strncpy.c scanc.c skpc.c locc.c
strncpy.c scanc.c skpc.c locc.c strncasecmp.c