Fix invalid octal literals

This commit is contained in:
Francois Kritzinger 2022-09-12 13:19:48 +02:00
parent 7e52b26c5f
commit 89ee15fa4a
6 changed files with 6 additions and 6 deletions

View File

@ -13,6 +13,6 @@
defined(__OpenBSD__) || \
defined(__NetBSD__) || \
defined(BUILD2_AUTOCONF_MACOS) || \
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 09)
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 9)
# define HAVE_GETENV 1
#endif

View File

@ -13,6 +13,6 @@
defined(__OpenBSD__) || \
defined(__NetBSD__) || \
defined(BUILD2_AUTOCONF_MACOS) || \
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 09)
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 9)
# define HAVE_PUTENV 1
#endif

View File

@ -13,6 +13,6 @@
defined(__OpenBSD__) || \
defined(__NetBSD__) || \
defined(BUILD2_AUTOCONF_MACOS) || \
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 09)
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 9)
# define HAVE_SETENV 1
#endif

View File

@ -13,6 +13,6 @@
defined(__OpenBSD__) || \
defined(__NetBSD__) || \
defined(BUILD2_AUTOCONF_MACOS) || \
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 09)
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 9)
# define HAVE_SIGACTION 1
#endif

View File

@ -13,6 +13,6 @@
defined(__OpenBSD__) || \
defined(__NetBSD__) || \
defined(BUILD2_AUTOCONF_MACOS) || \
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 09)
BUILD2_AUTOCONF_GLIBC_PREREQ(1, 9)
# define HAVE_STRSEP 1
#endif

View File

@ -8,7 +8,7 @@
/* Linux/glibc 1.09, Since 4.4BSD (~1995)
*/
#if BUILD2_AUTOCONF_GLIBC_PREREQ(1, 09) || \
#if BUILD2_AUTOCONF_GLIBC_PREREQ(1, 9) || \
defined(__FreeBSD__) || \
defined(__OpenBSD__) || \
defined(__NetBSD__) || \