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
ced88388
Commit
ced88388
authored
Mar 01, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- build vlc_symbol.h modules_plugin.h and modules_builtin.h in top_builddir
parent
e08bae6c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
12 deletions
+16
-12
Makefile.am
Makefile.am
+4
-1
configure.ac
configure.ac
+0
-5
toolbox
toolbox
+11
-6
vlc-config.in.in
vlc-config.in.in
+1
-0
No files found.
Makefile.am
View file @
ced88388
...
...
@@ -263,11 +263,14 @@ dist-hook:
###############################################################################
bin_SCRIPTS
=
vlc-config
CLEANFILES
=
$(bin_SCRIPTS)
vlc-config
:
$(top_builddir)/config.status $(top_builddir)/vlc-config.in
cd
$(top_builddir)
&&
$(SHELL)
./config.status
--file
=
$@
-
cd
$(top_builddir)
&&
chmod
0755
$@
$(SOURCES)
:
vlc-config
CLEANFILES
=
$(BUILT_SOURCES)
lib_LIBRARIES
=
lib/libvlc.a
$(LIBRARIES_libvlc_pic)
lib_libvlc_a_SOURCES
=
$(SOURCES_libvlc)
...
...
configure.ac
View file @
ced88388
...
...
@@ -4384,11 +4384,6 @@ AC_CONFIG_FILES([
dnl Generate makefiles
AC_OUTPUT
# Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
# not provided with the source
${SHELL} ./config.status --file=vlc-config
chmod 0755 vlc-config
printf "
vlc configuration
--------------------
...
...
toolbox
View file @
ced88388
...
...
@@ -400,10 +400,15 @@ then
if
test
-z
"
${
srcdir
}
"
;
then
srcdir
=
"
`
sed
-ne
's/^srcdir *= *//p'
< Makefile
`
"
fi
if
test
-z
"
${
builddir
}
"
;
then
builddir
=
"
`
sed
-ne
's/^top_builddir *= *//p'
< Makefile
`
"
fi
mkdir
-p
"
${
builddir
}
/include"
LIBVLC_HEADERS
=
`
getfiles HEADERS_include
`
BUILTINS
=
`
sed
-ne
's/.*builtins *= *" *\([^"]*\)".*/\1/p'
vlc-config
`
file
=
"
${
src
dir
}
/include/vlc_symbols.h"
file
=
"
${
build
dir
}
/include/vlc_symbols.h"
rm
-f
${
file
}
.in
echo
'/* DO NOT EDIT THIS FILE! See Makefile.am */'
>>
${
file
}
.in
...
...
@@ -421,10 +426,10 @@ then
mv
-f
${
file
}
.in
${
file
}
fi
file
=
"
${
src
dir
}
/src/misc/modules_plugin.h"
file
=
"
${
build
dir
}
/src/misc/modules_plugin.h"
rm
-f
${
file
}
.tmp
&&
cp
${
file
}
.in
${
file
}
.tmp
sed
-e
's#.*\$[I][d]:.*# * Automatically generated from '
${
file
}
'.in by bootstrap#'
<
${
file
}
.in
>
${
file
}
.tmp
rm
-f
${
file
}
.tmp
sed
-e
's#.*\$[I][d]:.*# * Automatically generated from '
${
file
}
'.in by bootstrap#'
<
${
srcdir
}
/src/misc/modules_plugin.h
.in
>
${
file
}
.tmp
echo
'#define STORE_SYMBOLS( p_symbols ) \'
>>
${
file
}
.tmp
cat
${
LIBVLC_HEADERS
}
|
grep
'^ *VLC_EXPORT.*;'
|
sed
-e
's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/ (p_symbols)->\2_inner = \2; \\/'
>>
${
file
}
.tmp
echo
''
>>
${
file
}
.tmp
...
...
@@ -436,9 +441,9 @@ then
mv
-f
${
file
}
.tmp
${
file
}
fi
file
=
"
${
src
dir
}
/src/misc/modules_builtin.h"
file
=
"
${
build
dir
}
/src/misc/modules_builtin.h"
rm
-f
${
file
}
.tmp
&&
cp
${
file
}
.in
${
file
}
.tmp
rm
-f
${
file
}
.tmp
&&
cp
${
srcdir
}
/src/misc/modules_builtin.h
.in
${
file
}
.tmp
if
test
-n
"
${
BUILTINS
}
"
then
for
i
in
`
echo
${
BUILTINS
}
`
...
...
vlc-config.in.in
View file @
ced88388
...
...
@@ -83,6 +83,7 @@ fi
if
test
"
${
top_builddir
}
"
!=
""
;
then
top_builddir
=
"
${
top_builddir
}
/"
fi
includes
=
"
${
includes
}
-I
${
top_builddir
}
include"
cppflags
=
"
${
includes
}
"
libs
=
"-L@libdir@"
module
=
""
...
...
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