Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e397e422
Commit
e397e422
authored
Jul 17, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* m4/vlc.m4: Looks like POSIX shell reduces "`eval echo '$'FOO`" to "" even
if $FOO contains spaces. Worked around the problem.
parent
0001dd31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
m4/vlc.m4
m4/vlc.m4
+8
-8
No files found.
m4/vlc.m4
View file @
e397e422
dnl Macros needed for VLC
dnl $Id: vlc.m4,v 1.
5 2003/07/01 14:25:4
7 sam Exp $
dnl $Id: vlc.m4,v 1.
6 2003/07/17 15:49:3
7 sam Exp $
dnl Add plugins or builtins
AC_DEFUN([AX_ADD_BUILTINS], [
...
...
@@ -88,25 +88,25 @@ AC_DEFUN([AX_OUTPUT_VLC_CONFIG_IN], [
for x in `echo ${am_all_modules}`
do [
echo " ${x})" >> vlc-config.in
if test
-n "`eval echo '$'CPPFLAGS_${x}`
"; then
if test
"`eval echo @'$'CPPFLAGS_${x}@`" != "@@
"; then
echo " cppflags=\"\${cppflags} `eval echo '$'CPPFLAGS_${x}`\"" >> vlc-config.in
fi
if test
-n "`eval echo '$'CFLAGS_${x}`
"; then
if test
"`eval echo @'$'CFLAGS_${x}@`" != "@@
"; then
echo " cflags=\"\${cflags} `eval echo '$'CFLAGS_${x}`\"" >> vlc-config.in
fi
if test
-n "`eval echo '$'CXXFLAGS_${x}`
"; then
if test
"`eval echo @'$'CXXFLAGS_${x}@`" != "@@
"; then
echo " cxxflags=\"\${cxxflags} `eval echo '$'CXXFLAGS_${x}`\"" >> vlc-config.in
if test "${x}" != "plugin
s" -a "${x}" != "builtins
"; then
if test "${x}" != "plugin
" -a "${x}" != "builtin
"; then
echo " linkage=\"c++\"" >> vlc-config.in
fi
fi
if test
-n "`eval echo '$'OBJCFLAGS_${x}`
"; then
if test
"`eval echo @'$'OBJCFLAGS_${x}@`" != "@@
"; then
echo " objcflags=\"\${objcflags} `eval echo '$'OBJCFLAGS_${x}`\"" >> vlc-config.in
if test "${x}" != "plugin
s" -a "${x}" != "builtins
"; then
if test "${x}" != "plugin
" -a "${x}" != "builtin
"; then
echo " if test \"\${linkage}\" = \"c\"; then linkage=\"objc\"; fi" >> vlc-config.in
fi
fi
if test
-n "`eval echo '$'LDFLAGS_${x}`
"; then
if test
"`eval echo @'$'LDFLAGS_${x}@`" != "@@
"; then
echo " ldflags=\"\${ldflags} `eval echo '$'LDFLAGS_${x}`\"" >> vlc-config.in
fi
echo " ;;" >> vlc-config.in
...
...
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