From 5a0db9bf8a293f2b2a97a4b5fe1c4eeab9108e2d Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 5 Aug 2014 19:58:36 +0200 Subject: build: move def file to libmpv/ This is more consistent with mpv.pc, which is also in libmpv/. --- etc/libmpv.def | 34 ---------------------------------- libmpv/mpv.def | 34 ++++++++++++++++++++++++++++++++++ wscript_build.py | 2 +- 3 files changed, 35 insertions(+), 35 deletions(-) delete mode 100644 etc/libmpv.def create mode 100644 libmpv/mpv.def diff --git a/etc/libmpv.def b/etc/libmpv.def deleted file mode 100644 index 0a97c43cb3..0000000000 --- a/etc/libmpv.def +++ /dev/null @@ -1,34 +0,0 @@ -mpv_client_api_version -mpv_client_name -mpv_command -mpv_command_async -mpv_command_string -mpv_create -mpv_detach_destroy -mpv_error_string -mpv_event_name -mpv_free -mpv_free_node_contents -mpv_get_property -mpv_get_property_async -mpv_get_property_osd_string -mpv_get_property_string -mpv_get_time_us -mpv_get_wakeup_pipe -mpv_initialize -mpv_load_config_file -mpv_observe_property -mpv_request_event -mpv_request_log_messages -mpv_resume -mpv_set_option -mpv_set_option_string -mpv_set_property -mpv_set_property_async -mpv_set_property_string -mpv_set_wakeup_callback -mpv_suspend -mpv_terminate_destroy -mpv_unobserve_property -mpv_wait_event -mpv_wakeup diff --git a/libmpv/mpv.def b/libmpv/mpv.def new file mode 100644 index 0000000000..0a97c43cb3 --- /dev/null +++ b/libmpv/mpv.def @@ -0,0 +1,34 @@ +mpv_client_api_version +mpv_client_name +mpv_command +mpv_command_async +mpv_command_string +mpv_create +mpv_detach_destroy +mpv_error_string +mpv_event_name +mpv_free +mpv_free_node_contents +mpv_get_property +mpv_get_property_async +mpv_get_property_osd_string +mpv_get_property_string +mpv_get_time_us +mpv_get_wakeup_pipe +mpv_initialize +mpv_load_config_file +mpv_observe_property +mpv_request_event +mpv_request_log_messages +mpv_resume +mpv_set_option +mpv_set_option_string +mpv_set_property +mpv_set_property_async +mpv_set_property_string +mpv_set_wakeup_callback +mpv_suspend +mpv_terminate_destroy +mpv_unobserve_property +mpv_wait_event +mpv_wakeup diff --git a/wscript_build.py b/wscript_build.py index 593d5bb2a7..a30af01aee 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -468,7 +468,7 @@ def build(ctx): includes = [ctx.bldnode.abspath(), ctx.srcnode.abspath()] + \ ctx.dependencies_includes(), features = features, - export_symbols_def = "etc/libmpv.def", + export_symbols_def = "libmpv/mpv.def", install_path = ctx.env.LIBDIR, vnum = libversion, ) -- cgit v1.2.3