diff options
author | Simon McVittie <smcv@collabora.com> | 2017-07-25 13:37:52 +0100 |
---|---|---|
committer | Simon McVittie <smcv@collabora.com> | 2017-11-06 14:07:21 +0000 |
commit | 83b439f7b4c6a946e0fe9a0287910ba4f6318143 (patch) | |
tree | 0ab96b598523a3cdb8687afa51a8dd4b86fa4d29 | |
parent | 3c031ef5aa1f7f53c6344781cb38b78abe44dc96 (diff) |
cmake: Match AC_DEFINE more precisely, respecting [] quoting
The regular expression previously used here to select the second
comma-delimited argument won't work when we introduce an argument
containing a comma, which I need to do now. We can address this by
recognising Autoconf's quoting mechanism (which uses square
brackets).
This is not 100% right (it doesn't understand nested square brackets),
but it's good enough in practice.
Signed-off-by: Simon McVittie <smcv@collabora.com>
Acked-by: Philip Withnall <withnall@endlessm.com>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=101354
-rw-r--r-- | cmake/modules/MacrosAutotools.cmake | 2 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/cmake/modules/MacrosAutotools.cmake b/cmake/modules/MacrosAutotools.cmake index 8bb83cdf..888d5e72 100644 --- a/cmake/modules/MacrosAutotools.cmake +++ b/cmake/modules/MacrosAutotools.cmake @@ -108,7 +108,7 @@ macro(autodefine name) foreach(line ${_configure_ac}) if(line MATCHES ".*AC_DEFINE(.*${name}.*).*") string (REGEX REPLACE ".*AC_DEFINE(.*).*" "\\1" value ${line}) - string (REGEX REPLACE ".*,(.*),.*" "\\1" value2 ${value}) + string (REGEX REPLACE "[^[]*\\[[^]]*\\], *\\[([^]]*)\\],.*" "\\1" value2 ${value}) string (REPLACE "[" "" value3 ${value2}) string (REPLACE "]" "" value4 ${value3}) set(${name} ${value4}) diff --git a/configure.ac b/configure.ac index 51bfdb58..dff9ad5d 100644 --- a/configure.ac +++ b/configure.ac @@ -258,6 +258,9 @@ fi # default (unless you don't have GLib), because they don't bloat the library # or binaries. +dnl Don't do anything too subtle here, because the CMake build system +dnl parses these lines with regular expressions. If necessary, adjust +dnl cmake/modules/MacrosAutotools.cmake to compensate. AC_DEFINE([GLIB_VERSION_MIN_REQUIRED], [GLIB_VERSION_2_40], [Ignore post-2.40 deprecations]) AC_DEFINE([GLIB_VERSION_MAX_ALLOWED], [GLIB_VERSION_2_40], [Prevent post-2.40 APIs]) |