aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-14 18:35:53 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-14 18:35:53 +0200
commit9e08ecb152c8feab13c4c228ba38a96dac8ba750 (patch)
tree35e44b04591c7db516dce8ae9c2ddbcb80691739 /configure.ac
parentedb5fa225cbe5141bbf4af85504db990003489ea (diff)
downloadexperiment-player-9e08ecb152c8feab13c4c228ba38a96dac8ba750.tar.gz
fixed --enable-doxygen-extract-private option on MinGW
cannot use the upper-casing variable substitution ${var^^} since it's not supported by MinGW's MSYS shell
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 260dc8c..c99ffcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -164,7 +164,14 @@ AM_CONDITIONAL(BUILD_DOXYGEN, test $doxygen_doc = yes)
AC_ARG_ENABLE(doxygen-extract-private,
AS_HELP_STRING([--enable-doxygen-extract-private],
[Include private and static members in Doxygen documentation [default=no]]),
- [DOXYGEN_EXTRACT_PRIVATE=${enableval^^}], [DOXYGEN_EXTRACT_PRIVATE=NO])
+[
+ case $enableval in
+ yes) DOXYGEN_EXTRACT_PRIVATE=YES ;;
+ *) DOXYGEN_EXTRACT_PRIVATE=NO ;;
+ esac
+], [
+ DOXYGEN_EXTRACT_PRIVATE=NO
+])
AC_SUBST(DOXYGEN_EXTRACT_PRIVATE)
AC_ARG_ENABLE(html-doc,