diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2013-10-29 10:24:31 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2013-10-29 10:24:31 +0100 |
commit | 35fbe621e413c8cbb5c7787e706e3e973d67da0a (patch) | |
tree | 1024fa4c6c741f9f1e99c84cb922384514ee1d0d /docs | |
parent | 6ef8db0790b0e9d79feab34d89b0b50896ec5be3 (diff) |
build: link eloop statically
We don't want to export libeloop so link it statically. Avoid installing
into into the system.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/pc/libeloop.pc.in | 11 | ||||
-rw-r--r-- | docs/sym/libeloop.sym | 107 |
2 files changed, 0 insertions, 118 deletions
diff --git a/docs/pc/libeloop.pc.in b/docs/pc/libeloop.pc.in deleted file mode 100644 index b9dc895..0000000 --- a/docs/pc/libeloop.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: eloop -Description: Epoll-based Event-Loop Library -URL: @PACKAGE_URL@ -Version: @PACKAGE_VERSION@ -Libs: -L${libdir} -leloop -Cflags: -I${includedir} diff --git a/docs/sym/libeloop.sym b/docs/sym/libeloop.sym deleted file mode 100644 index 7db72a7..0000000 --- a/docs/sym/libeloop.sym +++ /dev/null @@ -1,107 +0,0 @@ -/*** - * libeloop - Simple Event-Loop Library - * - * Copyright (c) 2012-2013 David Herrmann <dh.herrmann@googlemail.com> - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files - * (the "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ***/ - -LIBELOOP_1 { -global: - ev_eloop_new; - ev_eloop_ref; - ev_eloop_unref; -local: - *; -}; - -LIBELOOP_2 { -global: - ev_eloop_flush_fd; - ev_eloop_dispatch; - ev_eloop_run; - ev_eloop_exit; - ev_eloop_get_fd; - - ev_eloop_new_eloop; - ev_eloop_add_eloop; - ev_eloop_rm_eloop; - - ev_fd_new; - ev_fd_ref; - ev_fd_unref; - - ev_fd_enable; - ev_fd_disable; - ev_fd_is_enabled; - ev_fd_is_bound; - ev_fd_set_cb_data; - ev_fd_update; - - ev_eloop_new_fd; - ev_eloop_add_fd; - ev_eloop_rm_fd; - - ev_timer_new; - ev_timer_ref; - ev_timer_unref; - - ev_timer_enable; - ev_timer_disable; - ev_timer_is_enabled; - ev_timer_is_bound; - ev_timer_set_cb_data; - ev_timer_update; - ev_timer_drain; - - ev_eloop_new_timer; - ev_eloop_add_timer; - ev_eloop_rm_timer; - - ev_counter_new; - ev_counter_ref; - ev_counter_unref; - - ev_counter_enable; - ev_counter_disable; - ev_counter_is_enabled; - ev_counter_is_bound; - ev_counter_set_cb_data; - ev_counter_inc; - - ev_eloop_new_counter; - ev_eloop_add_counter; - ev_eloop_rm_counter; - - ev_eloop_register_signal_cb; - ev_eloop_unregister_signal_cb; - - ev_eloop_register_child_cb; - ev_eloop_unregister_child_cb; - - ev_eloop_register_idle_cb; - ev_eloop_unregister_idle_cb; - - ev_eloop_register_pre_cb; - ev_eloop_unregister_pre_cb; - - ev_eloop_register_post_cb; - ev_eloop_unregister_post_cb; -} LIBELOOP_1; |