Allow specifying optional libraries with WX_CONFIG_CHECK
wx-config has --optional-libs command line option for requesting linker flags for libraries that an application could optionally use but might not be available in current wxWidgets build. Make this feature available to Autoconf macro users. Closes https://github.com/wxWidgets/wxWidgets/pull/1256
This commit is contained in:
parent
7a5e649b9e
commit
b5e7b0a621
17
wxwin.m4
17
wxwin.m4
@ -142,7 +142,8 @@ AC_DEFUN([_WX_PRIVATE_CHECK_VERSION],
|
||||
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl WX_CONFIG_CHECK(VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND
|
||||
dnl [, WX-LIBS [, ADDITIONAL-WX-CONFIG-FLAGS]]]])
|
||||
dnl [, WX-LIBS [, ADDITIONAL-WX-CONFIG-FLAGS
|
||||
dnl [, WX-OPTIONAL-LIBS]]]]])
|
||||
dnl
|
||||
dnl Test for wxWidgets, and define WX_C*FLAGS, WX_LIBS and WX_LIBS_STATIC
|
||||
dnl (the latter is for static linking against wxWidgets). Set WX_CONFIG_NAME
|
||||
@ -159,6 +160,10 @@ dnl Optional ADDITIONAL-WX-CONFIG-FLAGS argument is appended to wx-config
|
||||
dnl invocation command in present. It can be used to fine-tune lookup of
|
||||
dnl best wxWidgets build available.
|
||||
dnl
|
||||
dnl Optional WX-OPTIONAL-LIBS argument contains comma- or space-separated list
|
||||
dnl of wxWidgets libraries to link against if they are available.
|
||||
dnl WX-OPTIONAL-LIBS is supported on version 2.9.0 and later.
|
||||
dnl
|
||||
dnl Example use:
|
||||
dnl WX_CONFIG_CHECK([2.6.0], [wxWin=1], [wxWin=0], [html,core,net]
|
||||
dnl [--unicode --debug])
|
||||
@ -235,14 +240,20 @@ AC_DEFUN([WX_CONFIG_CHECK],
|
||||
|
||||
if test -n "$wx_ver_ok"; then
|
||||
AC_MSG_RESULT(yes (version $WX_VERSION))
|
||||
WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs $4`
|
||||
|
||||
wx_optional_libs=""
|
||||
_WX_PRIVATE_CHECK_VERSION(2,9,0)
|
||||
if test -n "$wx_ver_ok" -a -n "$6"; then
|
||||
wx_optional_libs="--optional-libs $6"
|
||||
fi
|
||||
WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs $4 $wx_optional_libs`
|
||||
|
||||
dnl is this even still appropriate? --static is a real option now
|
||||
dnl and WX_CONFIG_WITH_ARGS is likely to contain it if that is
|
||||
dnl what the user actually wants, making this redundant at best.
|
||||
dnl For now keep it in case anyone actually used it in the past.
|
||||
AC_MSG_CHECKING([for wxWidgets static library])
|
||||
WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static --libs $4 2>/dev/null`
|
||||
WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static --libs $4 $wx_optional_libs 2>/dev/null`
|
||||
if test "x$WX_LIBS_STATIC" = "x"; then
|
||||
AC_MSG_RESULT(no)
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user