summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@redhat.com>2017-06-09 14:44:04 +0200
committerDaiki Ueno <ueno@gnu.org>2017-06-12 11:30:42 +0200
commitb309aea5174d6d3af569c2c54632a35825734579 (patch)
tree951e14e5cc88e4f74bcaeefc0a4a5cef2b5b4b63 /configure.ac
parentefe6dc56c3951c301dda1b548d4cbcd02e074462 (diff)
build: Allow use of _GNU_SOURCE
This reverts commit 6b457ffc, which forbids the use of GNU extension for the incompatibility of strerror_r. However, now that strerror_l is used instead on glibc systems, it has no point to do that.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2fab9e9..5753664 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,6 +27,9 @@ AM_SANITY_CHECK
AM_MAINTAINER_MODE([enable])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
+dnl Enable platform specific extensions.
+AC_USE_SYSTEM_EXTENSIONS
+
LT_PREREQ([2.2.6])
LT_INIT([dlopen disable-static])