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
dceb4429
Commit
dceb4429
authored
Jul 01, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* vlc-config.in.in: Reverted one of my first Solaris workarounds rendered
obsolescent by the latest ones.
parent
da38547a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
Makefile.am
Makefile.am
+4
-4
vlc-config.in.in
vlc-config.in.in
+5
-5
No files found.
Makefile.am
View file @
dceb4429
...
...
@@ -370,10 +370,10 @@ endif
# Install the modules and the symlinks
install-exec-local
:
for
i
in
""
`
$(VLC_CONFIG)
--target
plugin
`
;
do if
test
-n
"
$$
i"
;
then
\
$(INSTALL)
-m
755
"
modules/
$$
i
$(LIBEXT)
"
"
$(DESTDIR)$(libdir)
/vlc/
`
echo
$$
i |
cut
-f1
-d
/
`
"
;
\
$(INSTALL)
-m
755
"
$$
i
$(LIBEXT)
"
"
$(DESTDIR)$(libdir)
/vlc/
`
echo
$$
i |
cut
-f1
-d
/
`
"
;
\
fi
;
done
for
i
in
""
`
$(VLC_CONFIG)
--target
builtin
`
`
$(VLC_CONFIG)
--target
builtin
pic
`
;
do if
test
-n
"
$$
i"
;
then
\
$(INSTALL)
-m
644
"
modules/
$$
i"
"
$(DESTDIR)$(libdir)
/vlc"
;
\
$(INSTALL)
-m
644
"
$$
i"
"
$(DESTDIR)$(libdir)
/vlc"
;
\
fi
;
done
for
i
in
""
$(ALIASES)
;
do if
test
-n
"
$$
i"
;
then
\
rm
-f
"
$(DESTDIR)$(bindir)
/
$$
i"
&&
\
...
...
@@ -392,7 +392,7 @@ VLC.app: vlc
$(INSTALL)
vlc
$(srcdir)
/VLC.app/Contents/MacOS/VLC
$(INSTALL)
-d
$(srcdir)
/VLC.app/Contents/MacOS/modules
for
i
in
""
`
$(VLC_CONFIG)
--target
plugin
`
;
do
\
if
test
-n
"
$$
i"
;
then
$(INSTALL)
"
$(srcdir)
/
modules/
$$
i
$(LIBEXT)
"
\
if
test
-n
"
$$
i"
;
then
$(INSTALL)
"
$(srcdir)
/
$$
i
$(LIBEXT)
"
\
"
$(srcdir)
/VLC.app/Contents/MacOS/modules"
;
\
fi
;
done
$(INSTALL)
-d
$(srcdir)
/VLC.app/Contents/MacOS/share
...
...
@@ -447,7 +447,7 @@ package-win32:
mkdir
-p
"$(srcdir)/tmp/plugins"
for
i
in
""
`$(VLC_CONFIG)
--target
plugin`
;
do
\
if
test
-n
"$$i"
;
then
\
$(INSTALL)
"$(srcdir)/
modules/
$$i$(LIBEXT)"
"$(srcdir)/tmp/plugins/"
;
\
$(INSTALL)
"$(srcdir)/$$i$(LIBEXT)"
"$(srcdir)/tmp/plugins/"
;
\
fi
;
done
for
i
in
""
$(srcdir)/tmp/plugins/*$(LIBEXT)
;
\
...
...
vlc-config.in.in
View file @
dceb4429
...
...
@@ -243,7 +243,7 @@ if test "${echo_target}" = yes; then
for
module
in
`
echo
"
${
plugins
}
"
`
;
do
register_targets
"
${
module
}
"
done
for
target
in
`
echo
${
list
}
`
;
do
printf
"
${
target
}
_plugin "
;
done
for
target
in
`
echo
${
list
}
`
;
do
printf
"
modules/
${
target
}
_plugin "
;
done
printf
'\n'
fi
if
test
"
${
echo_builtin
}
"
;
then
...
...
@@ -251,9 +251,9 @@ if test "${echo_target}" = yes; then
register_targets
"
${
module
}
"
done
if
test
"
${
echo_pic
}
"
;
then
for
target
in
`
echo
${
list
}
`
;
do
printf
"
${
target
}
_pic.a "
;
done
for
target
in
`
echo
${
list
}
`
;
do
printf
"
modules/
${
target
}
_pic.a "
;
done
else
for
target
in
`
echo
${
list
}
`
;
do
printf
"
${
target
}
.a "
;
done
for
target
in
`
echo
${
list
}
`
;
do
printf
"
modules/
${
target
}
.a "
;
done
fi
printf
'\n'
fi
...
...
@@ -285,9 +285,9 @@ if test "${echo_libs}" = yes; then
register_flags
"
${
module
}
"
done
if
test
"
${
echo_pic
}
"
;
then
for
target
in
`
echo
${
list
}
`
;
do
printf
"
${
target
}
_pic.a "
;
done
for
target
in
`
echo
${
list
}
`
;
do
printf
"
modules/
${
target
}
_pic.a "
;
done
else
for
target
in
`
echo
${
list
}
`
;
do
printf
"
${
target
}
.a "
;
done
for
target
in
`
echo
${
list
}
`
;
do
printf
"
modules/
${
target
}
.a "
;
done
fi
printf
'\n'
fi
...
...
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