Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
0473ca29
Commit
0473ca29
authored
Nov 24, 2015
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
keystore: add libsecret module
parent
cb4130bf
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
363 additions
and
0 deletions
+363
-0
configure.ac
configure.ac
+5
-0
modules/MODULES_LIST
modules/MODULES_LIST
+1
-0
modules/keystore/Makefile.am
modules/keystore/Makefile.am
+11
-0
modules/keystore/secret.c
modules/keystore/secret.c
+346
-0
No files found.
configure.ac
View file @
0473ca29
...
...
@@ -4082,6 +4082,11 @@ AS_IF([test "${enable_taglib}" != "no"], [
AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
])
dnl
dnl libsecret
dnl
PKG_ENABLE_MODULES_VLC([SECRET], [], [libsecret-1], [use libsecret for keystore], [auto])
dnl
dnl Developers helper modules (should be hidden from configure help)
dnl
...
...
modules/MODULES_LIST
View file @
0473ca29
...
...
@@ -202,6 +202,7 @@ $Id$
* karaoke: simple karaoke audio filter
* kate: kate text bitstream decoder
* keystore_plaintext: store secrets in a plaintext file (insecure)
* keystore_secret: store secrets via Gnome libsecret
* kva: OS/2 video output
* libass: Subtitle renderers using libass
* libbluray: Library to access Blu-Ray drives
...
...
modules/keystore/Makefile.am
View file @
0473ca29
...
...
@@ -2,3 +2,14 @@ keystoredir = $(pluginsdir)/keystore
libplaintext_keystore_plugin_la_SOURCES
=
keystore/plaintext.c
keystore_LTLIBRARIES
=
libplaintext_keystore_plugin.la
libsecret_plugin_la_SOURCES
=
keystore/secret.c
libsecret_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
$(SECRET_CFLAGS)
libsecret_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(keystoredir)
'
libsecret_plugin_la_LIBADD
=
$(SECRET_LIBS)
keystore_LTLIBRARIES
+=
\
$(LTLIBsecret)
EXTRA_LTLIBRARIES
+=
\
libsecret_plugin.la
modules/keystore/secret.c
0 → 100644
View file @
0473ca29
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment