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
4e0d4c98
Commit
4e0d4c98
authored
May 14, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch for wxWidgets and gcc-4.1.0, iconv fix and live555 compile fix
parent
6288c1e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+5
-3
extras/contrib/src/Patches/wxwidgets_uri.patch
extras/contrib/src/Patches/wxwidgets_uri.patch
+13
-0
No files found.
extras/contrib/src/Makefile
View file @
4e0d4c98
...
...
@@ -171,8 +171,8 @@ else
ifdef
HAVE_WINCE
all
:
.dvbpsi .zlib .ffmpeg .ogg .tremor .faad
else
else
# Standard Linux or other UNIX-like systems
all
:
.iconv .intl .freetype .fribidi .zlib
\
.a52 .mpeg2 .id3tag .mad .ogg .vorbis .vorbisenc .theora
\
...
...
@@ -432,7 +432,7 @@ ifdef HAVE_DARWIN_OS
touch
$@
else
.iconv
:
libiconv
(
cd
libiconv
;
CPPFLAGS
=
"-Dssize_t=long"
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-nls
&&
make
&&
make
install
)
(
cd
libiconv
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-nls
&&
make
&&
make
install
)
$(INSTALL_NAME)
touch
$@
endif
...
...
@@ -1055,7 +1055,8 @@ ifdef HAVE_DARWIN_OS
(
cd
$<
;
sed
-e
's%EXTRA_CFLAGS%
$(EXTRA_CFLAGS)
%'
-e
's%EXTRA_LDFLAGS%
$(EXTRA_LDFLAGS)
%'
-i
.orig config.macosx
)
(
cd
$<
;
./genMakefiles macosx
&&
make
)
else
(
cd
$<
;
./genMakefiles linux
&&
make
$(HOSTCC)
)
(
cd
$<
;
if
[
!
-f
groupsock/Makefile.head.orig
]
then
;
sed
-e
's/=/= $$\(EXTRA_CPPFLAGS\)/'
-e
's%EXTRA_CPPFLAGS%
$(EXTRA_CPPFLAGS)
%'
-e
's/$$\(//'
-e
's/\)//'
-i
.orig groupsock/Makefile.head
fi
)
(
cd
$<
;
./genMakefiles
&&
make
$(HOSTCC)
)
endif
endif
endif
...
...
@@ -1291,6 +1292,7 @@ wxWidgets-$(WXWIDGETS_VERSION).tar.gz:
wxwidgets
:
wxWidgets-$(WXWIDGETS_VERSION).tar.gz
$(EXTRACT_GZ)
(
cd
wxwidgets
;
patch
-p0
< ../Patches/wxwidgets_uri.patch
)
# (cd wxwidgets; patch -p1 <../Patches/wxMSW-win32.patch)
.wxwidgets
:
wxwidgets
...
...
extras/contrib/src/Patches/wxwidgets_uri.patch
0 → 100644
View file @
4e0d4c98
--- src/common/uri.cpp.orig 2005-08-13 02:24:13.000000000 +0200
+++ src/common/uri.cpp 2006-05-14 10:49:14.000000000 +0200
@@ -886,8 +886,8 @@
op += 3;
}
- m_path = base.m_path.substr(0, bp - base.m_path.c_str()) +
- m_path.substr((op - m_path.c_str()), m_path.Length());
+ m_path = (wxString)base.m_path.substr(0, bp - base.m_path.c_str()) +
+ (wxString)m_path.substr((op - m_path.c_str()), m_path.Length());
}
}
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