Skip to content

Commit

Permalink
Remove excessive quoting from configure
Browse files Browse the repository at this point in the history
Don't quote AC_MSG_XXX() macros, this is unnecessary.
  • Loading branch information
vadz committed Aug 9, 2018
1 parent f66b428 commit b2c6bb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Expand Up @@ -43,7 +43,7 @@ AC_ARG_VAR(WX_CONFIG, [Path to wx-config script (default: search in PATH).])
WX_CONFIG_OPTIONS
WX_CONFIG_CHECK([2.8.0],
[],
[AC_MSG_FAILURE([wxWidgets required but not detected.])],
AC_MSG_FAILURE([wxWidgets required but not detected.]),
[base,core,xml]
)

Expand All @@ -55,7 +55,7 @@ dnl yet).
core_WX_LIBS=$WX_LIBS
WX_CONFIG_CHECK([2.8.0],
[WX_LIBS_PDFDC_SAMPLE=$WX_LIBS],
[AC_MSG_WARN([Some wxWidgets libraries not available, pdfdc sample won't be built])],
AC_MSG_WARN([Some wxWidgets libraries not available, pdfdc sample won't be built]),
[adv,base,core,html,richtext,xml]
)
WX_LIBS=$core_WX_LIBS
Expand Down Expand Up @@ -96,7 +96,7 @@ if test -n "$USE_GTK"; then
PKG_CHECK_MODULES(FONTCONFIG, fontconfig,
[CXXFLAGS="$CXXFLAGS $FONTCONFIG_CFLAGS"
LIBS="$LIBS $FONTCONFIG_LIBS"],
[AC_MSG_FAILURE(Required Fontconfig library not detected.)])
AC_MSG_FAILURE(Required Fontconfig library not detected.))
fi

dnl This is needed by WX_LIKE_LIBNAME
Expand Down

0 comments on commit b2c6bb2

Please sign in to comment.