b890481de0
Fix strcasecmp_l() and strncasecmp_l() POSIX 2008 compliance. POSIX.1-2008 specifies that those two functions should be declared by including <strings.h>, not <string.h> (the latter only has strcoll_l() and strxfrm_l()): http://pubs.opengroup.org/onlinepubs/9699919799/functions/strcasecmp.html Bump __FreeBSD_version for ports that may be using the non-standard reference. Obtained from: DragonFlyBSD Reviewed by: theraven
9 lines
205 B
Makefile
9 lines
205 B
Makefile
# $FreeBSD$
|
|
|
|
NO_OBJ=
|
|
INCS= _ctype.h _inttypes.h _langinfo.h _locale.h _monetary.h _stdio.h\
|
|
_stdlib.h _string.h _strings.h _time.h _uchar.h _wchar.h
|
|
INCSDIR=${INCLUDEDIR}/xlocale
|
|
|
|
.include <bsd.prog.mk>
|