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
6bcf1f05
Commit
6bcf1f05
authored
Aug 25, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* patch ogg because it's broken (userdefined defines in public headers are WAY evil)
parent
cec58e42
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+1
-0
extras/contrib/src/Patches/ogg.patch
extras/contrib/src/Patches/ogg.patch
+16
-0
No files found.
extras/contrib/src/Makefile
View file @
6bcf1f05
...
...
@@ -477,6 +477,7 @@ libogg-$(OGG_VERSION).tar.gz:
libogg
:
libogg-$(OGG_VERSION).tar.gz
$(EXTRACT_GZ)
patch
-p
0 < Patches/ogg.patch
.ogg
:
libogg
(
cd
$<
;
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
...
...
extras/contrib/src/Patches/ogg.patch
0 → 100644
View file @
6bcf1f05
diff -ruN libogg.orig/include/ogg/os_types.h libogg/include/ogg/os_types.h
--- libogg.orig/include/ogg/os_types.h 2004-09-23 15:26:58.000000000 +0200
+++ libogg/include/ogg/os_types.h 2005-08-25 18:42:01.000000000 +0200
@@ -120,6 +120,12 @@
#else
# include <sys/types.h>
+#if defined( HAVE_INTTYPES_H )
+# include <inttypes.h>
+#endif
+#if defined( HAVE_STDINT_H )
+# include <stdint.h>
+#endif
# include <ogg/config_types.h>
#endif
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