From b8123662e8cb41e033771151500d927456953ab2 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 10 Feb 2012 14:43:42 +0200 Subject: General prep for release. (Copyrights, etc.) --- vms/vms-conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vms/vms-conf.h') diff --git a/vms/vms-conf.h b/vms/vms-conf.h index c42118ff..1d1ffe51 100644 --- a/vms/vms-conf.h +++ b/vms/vms-conf.h @@ -408,7 +408,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "4.0.0" +#define PACKAGE_VERSION "4.0.1" /* Define to 1 if *printf supports %F format */ #undef PRINTF_HAS_F_FORMAT @@ -438,7 +438,7 @@ #define USE_INCLUDED_STRFTIME 1 /* Version number of package */ -#define VERSION "4.0.0" +#define VERSION "4.0.1" /* Define to 1 if on AIX 3. System headers sometimes define this. -- cgit v1.2.3 From d2650f4a9fed079621db60fb2f61ef1bca266bfa Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 28 Mar 2012 22:00:28 +0200 Subject: And more copyright updates. --- vms/vms-conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vms/vms-conf.h') diff --git a/vms/vms-conf.h b/vms/vms-conf.h index 1d1ffe51..b81c20ac 100644 --- a/vms/vms-conf.h +++ b/vms/vms-conf.h @@ -7,8 +7,8 @@ */ /* - * Copyright (C) 1991-1992, 1995-1996, 1999, 2001-2003, 2005, 2009, 2010, 2011 - * the Free Software Foundation, Inc. + * Copyright (C) 1991-1992, 1995-1996, 1999, 2001-2003, 2005, 2009, 2010, 2011, + * 2012, the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. -- cgit v1.2.3 From 19a22c41661c3b032c9cdcfd6913373526c025c8 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 29 Mar 2012 21:32:53 +0200 Subject: Sync dfa with grep. Update configure machinery. --- vms/vms-conf.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'vms/vms-conf.h') diff --git a/vms/vms-conf.h b/vms/vms-conf.h index b81c20ac..59abd5de 100644 --- a/vms/vms-conf.h +++ b/vms/vms-conf.h @@ -461,6 +461,18 @@ /* Define to 1 if on MINIX. */ #undef _MINIX +/* The _Noreturn keyword of C11. */ +#ifndef _Noreturn +# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ + || 0x5110 <= __SUNPRO_C) +# define _Noreturn __attribute__ ((__noreturn__)) +# elif defined _MSC_VER && 1200 <= _MSC_VER +# define _Noreturn __declspec (noreturn) +# else +# define _Noreturn +# endif +#endif + /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE -- cgit v1.2.3