diff options
author | sjg <sjg@FreeBSD.org> | 2014-07-08 22:27:50 +0000 |
---|---|---|
committer | sjg <sjg@FreeBSD.org> | 2014-07-08 22:27:50 +0000 |
commit | 8a8bdedf3516cfc13d63e3d424375679d4fe2a5c (patch) | |
tree | 4c5229352cca8f44795e8423807a3ec5d9f482ed /usr.bin/bmake | |
parent | 26d6f0488543168ab53e731b626612a7d1028552 (diff) | |
download | FreeBSD-src-8a8bdedf3516cfc13d63e3d424375679d4fe2a5c.zip FreeBSD-src-8a8bdedf3516cfc13d63e3d424375679d4fe2a5c.tar.gz |
Update to bmake-20140620
Main change is detection of malformed variable references.
Reviewed by: obrien
Diffstat (limited to 'usr.bin/bmake')
-rw-r--r-- | usr.bin/bmake/Makefile | 5 | ||||
-rw-r--r-- | usr.bin/bmake/config.h | 13 |
2 files changed, 14 insertions, 4 deletions
diff --git a/usr.bin/bmake/Makefile b/usr.bin/bmake/Makefile index fceee09..2fc2bee 100644 --- a/usr.bin/bmake/Makefile +++ b/usr.bin/bmake/Makefile @@ -14,10 +14,10 @@ CFLAGS+= -I${.CURDIR} CLEANDIRS+= FreeBSD CLEANFILES+= bootstrap -# $Id: Makefile,v 1.23 2014/01/02 22:20:52 sjg Exp $ +# $Id: Makefile,v 1.27 2014/06/20 14:51:54 sjg Exp $ # Base version on src date -MAKE_VERSION= 20140101 +MAKE_VERSION= 20140620 PROG?= ${.CURDIR:T} @@ -106,6 +106,7 @@ COPTS.meta.c += -DHAVE_FILEMON_H -I${FILEMON_H:H} SUBDIR+= unit-tests .endif + MAN= ${PROG}.1 MAN1= ${MAN} diff --git a/usr.bin/bmake/config.h b/usr.bin/bmake/config.h index 1edb1d3..0e4e32d 100644 --- a/usr.bin/bmake/config.h +++ b/usr.bin/bmake/config.h @@ -146,6 +146,9 @@ `HAVE_STRUCT_STAT_ST_RDEV' instead. */ #define HAVE_ST_RDEV 1 +/* Define to 1 if you have the `sysctl' function. */ +#define HAVE_SYSCTL 1 + /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'. */ /* #undef HAVE_SYS_DIR_H */ @@ -166,6 +169,9 @@ /* Define to 1 if you have the <sys/stat.h> header file. */ #define HAVE_SYS_STAT_H 1 +/* Define to 1 if you have the <sys/sysctl.h> header file. */ +#define HAVE_SYS_SYSCTL_H 1 + /* Define to 1 if you have the <sys/time.h> header file. */ #define HAVE_SYS_TIME_H 1 @@ -230,7 +236,7 @@ #define PACKAGE_NAME "bmake" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "bmake 20140101" +#define PACKAGE_STRING "bmake 20140214" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "bmake" @@ -239,7 +245,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "20140101" +#define PACKAGE_VERSION "20140214" /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void @@ -300,6 +306,9 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ /* #undef _POSIX_SOURCE */ +/* C99 function name */ +/* #undef __func__ */ + /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ |