summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/config.h b/config.h
index b10ea54..22ff610 100644
--- a/config.h
+++ b/config.h
@@ -1,6 +1,6 @@
/* Program version */
/* not for the inetutils version */
-#define VERSION "4.7.6"
+#define VERSION "4.7.7"
/* Configurable features */
@@ -41,7 +41,12 @@
# endif
#endif
-#if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2
+/* Linux, Solaris 5, FreeBSD 5.x. What else? */
+#if defined _POSIX_VERSION && _POSIX_VERSION >= 200112L
+# define HAVE_WORDEXP
+#endif
+
+#if defined _POSIX2_VERSION
# define HAVE_REGEXEC
#endif