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
90969570
Commit
90969570
authored
Jul 08, 2015
by
KO Myung-Hun
Committed by
Rémi Denis-Courmont
Aug 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: fix fourcc_gen build on OS/2
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
76e10cf1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
configure.ac
configure.ac
+4
-0
extras/package/os2/configure.sh
extras/package/os2/configure.sh
+2
-1
src/Makefile.am
src/Makefile.am
+3
-3
No files found.
configure.ac
View file @
90969570
...
...
@@ -299,9 +299,13 @@ case "${build_os}" in
cygwin|msys)
ac_executable_extensions=".exe"
;;
os2*)
BUILDEXEEXT=".exe"
;;
*)
;;
esac
AC_SUBST(BUILDEXEEXT)
dnl Android is linux, but a bit different
AS_IF([test "$SYS" = linux],[
...
...
extras/package/os2/configure.sh
View file @
90969570
...
...
@@ -44,5 +44,6 @@ OPTIONS="
export
ARCHFLAGS
=
${
ARCHFLAGS
-
"-march=i486"
}
export
CFLAGS
=
"
${
CFLAGS
}
${
ARCHFLAGS
}
"
export
CXXFLAGS
=
"
${
CXXFLAGS
}
${
ARCHFLAGS
}
"
export
BUILDCC
=
"gcc -std=c99"
sh
"
$(
dirname
$0
)
"
/../../../configure
${
OPTIONS
}
$*
sh
"
$(
dirname
$0
)
"
/../../../configure
${
OPTIONS
}
"
$@
"
src/Makefile.am
View file @
90969570
...
...
@@ -512,13 +512,13 @@ SOURCES_libvlc = \
# FourCC tables
BUILT_SOURCES
+=
fourcc_tables.h
EXTRA_DIST
+=
misc/fourcc_gen.c
MOSTLYCLEANFILES
=
fourcc_gen
MOSTLYCLEANFILES
=
fourcc_gen
$(BUILDEXEEXT)
fourcc_gen
:
misc/fourcc_gen.c misc/fourcc_list.h ../include/vlc_fourcc.h
fourcc_gen
$(BUILDEXEEXT)
:
misc/fourcc_gen.c misc/fourcc_list.h ../include/vlc_fourcc.h
$(AM_V_at)
rm
-f
--
$@
$(AM_V_CC)$(BUILDCC)
-I
$(srcdir)
-o
$@
$<
fourcc_tables.h
:
fourcc_gen
fourcc_tables.h
:
fourcc_gen
$(BUILDEXEEXT)
$(AM_V_at)
rm
-f
--
$@
.tmp
$(AM_V_GEN)$(builddir)
/fourcc_gen
>
$@
.tmp
$(AM_V_at)
mv
-f
--
$@
.tmp
$@
...
...
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