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
83f88155
Commit
83f88155
authored
May 26, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export WORDS_BIGENDIAN to pkg-config unless someone knows better
parent
2025f093
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
configure.ac
configure.ac
+6
-0
src/check_headers
src/check_headers
+1
-0
src/vlc-plugin.pc.in
src/vlc-plugin.pc.in
+1
-0
No files found.
configure.ac
View file @
83f88155
...
...
@@ -5598,6 +5598,12 @@ dnl
dnl Endianness check
dnl
AC_C_BIGENDIAN
AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
], [
DEFS_BIGENDIAN=""
])
AC_SUBST(DEFS_BIGENDIAN)
dnl
dnl DLL loader copied from MPlayer copied from somewhere else (WINE ?)
...
...
src/check_headers
View file @
83f88155
...
...
@@ -7,6 +7,7 @@ cd "$(dirname "$0")" || exit $?
# There are incorrect, as external users don't have our <config.h>.
regexp
=
"
$(
cat
../config.h.in |
\
sed
-n
-e
's/^#undef \([A-Z0-9_]*\)$/\1/p'
|
\
grep
-v
'WORDS_BIGENDIAN'
|
\
xargs |
\
sed
-e
's/ /\\\|/g'
)
"
...
...
src/vlc-plugin.pc.in
View file @
83f88155
...
...
@@ -10,6 +10,7 @@ Cflags: -I${includedir} -I${includedir}/vlc/plugins \
-D_FILE_OFFSET_BITS=64 \
-D__USE_UNIX98 \
-D_LARGEFILE64_SOURCE \
@DEFS_BIGENDIAN@ \
-D_REENTRANT \
-D_THREAD_SAFE
Libs: -L${libdir} -lvlccore
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