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
473906a0
Commit
473906a0
authored
Mar 19, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pkg-config for the plugin API
(Don't expect this to work yet though)
parent
b321beb4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
src/Makefile.am
src/Makefile.am
+7
-1
src/vlc-plugin.pc.in
src/vlc-plugin.pc.in
+15
-0
No files found.
src/Makefile.am
View file @
473906a0
...
...
@@ -10,6 +10,8 @@ EXTRA_DIST = extras/COPYING modules/builtin.h.in libvlc.sym vlc-control.pc.in
BUILT_SOURCES
=
modules/builtin.h misc/revision.c ../include/vlc_about.h
CLEANFILES
=
$(BUILT_SOURCES)
SUFFIXES
=
.pc.in .pc
###############################################################################
# Headers
###############################################################################
...
...
@@ -134,13 +136,17 @@ modules/modules.c: modules/builtin.h
###############################################################################
pkgconfigdir
=
$(libdir)
/pkgconfig
pkgconfig_DATA
=
vlc-control.pc
pkgconfig_DATA
=
vlc-control.pc
vlc-plugin.pc
CLEANFILES
+=
$(pkgconfig_DATA)
vlc-control.pc
:
vlc-control.pc.in $(top_builddir)/config.status
cd
$(top_builddir)
&&
\
$(SHELL)
./config.status
--file
=
src/vlc-control.pc
.pc.in.pc
:
$(top_builddir)/config.status
cd
"
$(top_builddir)
"
&&
\
$(SHELL)
./config.status
--file
=
"src/
$@
"
###############################################################################
# Building libvlc
###############################################################################
...
...
src/vlc-plugin.pc.in
0 → 100644
View file @
473906a0
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: VLC plugin API
Description: VLC media player plugin interface
Version: @VERSION@
Cflags: -I${includedir}/vlc/plugin \
-D_FILE_OFFSET_BITS=64 \
-D__USE_UNIX98 \
-D_LARGEFILE64_SOURCE \
-D_REENTRANT \
-D_THREAD_SAFE
Libs: -L${libdir} -lvlc
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