summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2013-10-29 10:19:05 +0100
committerDavid Herrmann <dh.herrmann@gmail.com>2013-10-29 10:19:05 +0100
commit6ef8db0790b0e9d79feab34d89b0b50896ec5be3 (patch)
tree4e1b01dbc1194e1c699e533326642becaec9356e /docs
parent527ef20fb8832c1e65f6a475bc60013875123337 (diff)
build: link libuterm statically
We shouldn't export libraries which we don't really allow linkink externally. Link libuterm statically and avoid installing it into /lib. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/pc/libuterm.pc.in11
-rw-r--r--docs/sym/libuterm.sym125
2 files changed, 0 insertions, 136 deletions
diff --git a/docs/pc/libuterm.pc.in b/docs/pc/libuterm.pc.in
deleted file mode 100644
index cc2c5c8..0000000
--- a/docs/pc/libuterm.pc.in
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: uterm
-Description: User-space Terminal Video/Input/Hotplug/etc Helper Library
-URL: @PACKAGE_URL@
-Version: @PACKAGE_VERSION@
-Libs: -L${libdir} -luterm
-Cflags: -I${includedir}
diff --git a/docs/sym/libuterm.sym b/docs/sym/libuterm.sym
deleted file mode 100644
index 371d37c..0000000
--- a/docs/sym/libuterm.sym
+++ /dev/null
@@ -1,125 +0,0 @@
-/***
- * libuterm - User-Space Terminals
- *
- * 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.
- ***/
-
-LIBUTERM_1 {
-global:
- uterm_input_new;
- uterm_input_ref;
- uterm_input_unref;
-
- uterm_input_add_dev;
- uterm_input_remove_dev;
-
- uterm_input_register_cb;
- uterm_input_unregister_cb;
-
- uterm_input_sleep;
- uterm_input_wake_up;
- uterm_input_is_awake;
-
- uterm_vt_master_new;
- uterm_vt_master_ref;
- uterm_vt_master_unref;
-
- uterm_vt_master_activate_all;
- uterm_vt_master_deactivate_all;
-
- uterm_vt_allocate;
- uterm_vt_deallocate;
- uterm_vt_ref;
- uterm_vt_unref;
-
- uterm_vt_activate;
- uterm_vt_deactivate;
- uterm_vt_retry;
- uterm_vt_get_type;
- uterm_vt_get_num;
-
- uterm_dpms_to_name;
- uterm_video_available;
-
- uterm_mode_ref;
- uterm_mode_unref;
- uterm_mode_next;
-
- uterm_mode_get_name;
- uterm_mode_get_width;
- uterm_mode_get_height;
-
- uterm_display_ref;
- uterm_display_unref;
- uterm_display_next;
-
- uterm_display_register_cb;
- uterm_display_unregister_cb;
-
- uterm_display_get_modes;
- uterm_display_get_current;
- uterm_display_get_default;
-
- uterm_display_get_state;
- uterm_display_activate;
- uterm_display_deactivate;
- uterm_display_set_dpms;
- uterm_display_get_dpms;
-
- uterm_display_use;
- uterm_display_get_buffers;
- uterm_display_swap;
- uterm_display_is_swapping;
-
- uterm_display_fill;
- uterm_display_blit;
- uterm_display_fake_blend;
- uterm_display_fake_blendv;
-
- uterm_video_new;
- uterm_video_ref;
- uterm_video_unref;
-
- uterm_video_segfault;
- uterm_video_get_displays;
- uterm_video_register_cb;
- uterm_video_unregister_cb;
-
- uterm_video_sleep;
- uterm_video_wake_up;
- uterm_video_is_awake;
- uterm_video_poll;
-
- UTERM_VIDEO_FBDEV;
- UTERM_VIDEO_DRM2D;
- UTERM_VIDEO_DRM3D;
-
- uterm_monitor_new;
- uterm_monitor_ref;
- uterm_monitor_unref;
- uterm_monitor_scan;
-
- uterm_monitor_set_seat_data;
- uterm_monitor_set_dev_data;
-local:
- *;
-};