diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-07-14 23:49:37 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-07-14 23:49:37 +0200 |
commit | 1eae4c45c9d04314c927c8ac6323133414020ba3 (patch) | |
tree | 161b4d1e0db37e0a31fb1a9d3361870776b96875 /src/libsystemd-login.sym | |
parent | 114a50f898a89bd7784c215ac5df95ec8c45a905 (diff) |
libs: add symbol versioning for the benefit of RPM
Diffstat (limited to 'src/libsystemd-login.sym')
-rw-r--r-- | src/libsystemd-login.sym | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libsystemd-login.sym b/src/libsystemd-login.sym new file mode 100644 index 0000000000..708ef6ff25 --- /dev/null +++ b/src/libsystemd-login.sym @@ -0,0 +1,24 @@ +/*** + This file is part of systemd. + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. +***/ + +/* Original symbols from systemd v31 */ + +LIBSYSTEMD_LOGIN_31 { +global: + sd_pid_get_session; + sd_seat_get_active; + sd_session_get_seat; + sd_session_get_uid; + sd_session_is_active; + sd_uid_get_state; + sd_uid_is_active_on_seat; + sd_uid_is_on_seat; +local: + *; +}; |