Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
be5bff39
Commit
be5bff39
authored
Apr 28, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow building plugins through autotools-builtin means...
...in addition to vlc-config
parent
24ce9d79
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
modules/common.am
modules/common.am
+0
-1
modules/genmf
modules/genmf
+11
-1
No files found.
modules/common.am
View file @
be5bff39
...
...
@@ -8,7 +8,6 @@
NULL =
SUFFIXES =
libvlcdir = $(libdir)/vlc/$(basedir)
libvlc_LTLIBRARIES =
EXTRA_DIST = Modules.am
BUILT_SOURCES =
CLEANFILES = $(BUILT_SOURCES)
...
...
modules/genmf
View file @
be5bff39
...
...
@@ -19,10 +19,19 @@ do
# automake will not recurse for make dist if we don't define SUBDIRS = .
subdirs
=
"
`
sed
-ne
's,'
modules/
${
dir
}
'/\([^/]*\)/Makefile,\1,p'
configure.ac | xargs
`
"
mods
=
"
`
sed
-n
-e
's/^ *SOURCES_\([^ ]*\).*/\1/p'
<
"
${
modf
}
"
| xargs
`
"
plugins
=
"
`
sed
-n
-e
's/^.*lib\([^ ]*\)_plugin\.la.*/\1/p'
<
"
${
modf
}
"
| xargs
`
"
libvlc_ltlibs
=
""
extra_ltlibs
=
""
for
mod
in
$mods
do
extra_ltlibs
=
"
${
extra_ltlibs
}
lib
${
mod
}
_plugin.la"
case
"
${
plugins
}
"
in
*
\
${
mod
}
\
*
)
;;
*
)
libvlc_ltlibs
=
"
${
libvlc_ltlibs
}
\$
(LTLIB
${
mod
}
)"
extra_ltlibs
=
"
${
extra_ltlibs
}
lib
${
mod
}
_plugin.la"
;;
esac
done
rm
-f
"
${
makf
}
"
&&
cat
>
"
${
makf
}
"
<<
EOF
#
${
makf
}
automatically generated from
${
modf
}
by
$0
...
...
@@ -32,6 +41,7 @@ basedir = ${basedir}
dir =
${
dir
}
mods =
${
mods
}
SUBDIRS =
${
subdirs
}
libvlc_LTLIBRARIES =
${
libvlc_ltlibs
}
EXTRA_LTLIBRARIES =
${
extra_ltlibs
}
include
\$
(top_srcdir)/modules/common.am
...
...
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