mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 05:18:00 +02:00
and another .def.in for the verbose mode handling
This commit is contained in:
parent
b0e0cd03e8
commit
83c70d45a8
4 changed files with 9 additions and 3 deletions
|
|
@ -253,6 +253,11 @@ if(WIN32)
|
|||
else(DBUS_BUILD_TESTS)
|
||||
set(DBUS_CLIENT_TEST_EXPORTS )
|
||||
endif(DBUS_BUILD_TESTS)
|
||||
if (DBUS_ENABLE_VERBOSE_MODE)
|
||||
file(READ "${DBUS_DIR}/dbus-1-verbosesymbols.def.in" DBUS_VERBOSE_EXPORTS)
|
||||
else(DBUS_ENABLE_VERBOSE_MODE)
|
||||
set(DBUS_VERBOSE_EXPORTS )
|
||||
endif(DBUS_ENABLE_VERBOSE_MODE)
|
||||
set(DBUS_LIB_DEF "${CMAKE_BINARY_DIR}/dbus-1.def")
|
||||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/dbus-1.def.cmake" ${DBUS_LIB_DEF})
|
||||
if(MSVC)
|
||||
|
|
|
|||
|
|
@ -183,7 +183,6 @@ _dbus_header_set_field_basic
|
|||
_dbus_header_set_serial
|
||||
_dbus_header_toggle_flag
|
||||
_dbus_header_update_lengths
|
||||
_dbus_is_verbose_real
|
||||
_dbus_keyring_get_best_key
|
||||
_dbus_keyring_get_hex_key
|
||||
_dbus_keyring_is_for_credentials
|
||||
|
|
@ -500,8 +499,6 @@ _dbus_validate_signature
|
|||
_dbus_validate_signature_with_reason
|
||||
_dbus_verbose_bytes
|
||||
_dbus_verbose_bytes_of_string
|
||||
_dbus_verbose_real
|
||||
_dbus_verbose_reset_real
|
||||
_dbus_warn
|
||||
_dbus_warn_check_failed
|
||||
_dbus_watch_invalidate
|
||||
|
|
|
|||
3
dbus/dbus-1-verbosesymbols.def.in
Normal file
3
dbus/dbus-1-verbosesymbols.def.in
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
_dbus_is_verbose_real
|
||||
_dbus_verbose_real
|
||||
_dbus_verbose_reset_real
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
EXPORTS
|
||||
@DBUS_CLIENT_EXPORTS@
|
||||
@DBUS_CLIENT_TEST_EXPORTS@
|
||||
@DBUS_VERBOSE_EXPORTS@
|
||||
Loading…
Add table
Reference in a new issue