From c66edd4e647682919967c3518e6366e822a4f8c8 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 5 Jan 2015 16:54:33 +0100 Subject: [PATCH] build: remove -Wno-dollar-in-identifier-extension MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don't check if -Wno-dollar-in-identifier-extension is supported in the autotools build; that flag was only necessary on OS X and only when the dtrace probes were enabled (because dtrace(1) generates identifiers with sigils in them). The probes were removed in commit cb51400, making the check unnecessary. PR-URL: https://github.com/libuv/libuv/pull/24 Reviewed-By: Saúl Ibarra Corretgé --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8ba165a4..fe2d6327 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,6 @@ AM_PROG_CC_C_O CC_CHECK_CFLAGS_APPEND([-Wall]) CC_CHECK_CFLAGS_APPEND([-Wextra]) CC_CHECK_CFLAGS_APPEND([-Wno-unused-parameter]) -CC_CHECK_CFLAGS_APPEND([-Wno-dollar-in-identifier-extension]) # AM_PROG_AR is not available in automake v0.11 but it's essential in v0.12. m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) # autoconf complains if AC_PROG_LIBTOOL precedes AM_PROG_AR.