Skip to content

Commit c51b118

Browse files
author
theuni
committed
Merged cptspiff's code-reshuffle branch.
Squashed commit due to build breakage during code-reshuffle history. Conflicts: xbmc/Util.cpp xbmc/cdrip/CDDARipper.cpp xbmc/filesystem/Directory.cpp xbmc/filesystem/File.cpp
1 parent be61ebd commit c51b118

File tree

13,469 files changed

+41821
-38455
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

13,469 files changed

+41821
-38455
lines changed

.gitignore

+653-640
Large diffs are not rendered by default.

Makefile.in

+316-158
Large diffs are not rendered by default.

Makefile.include.in

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ CXXFLAGS+=@CXXFLAGS@
3232
CFLAGS+=@CFLAGS@
3333
LDFLAGS+=@LDFLAGS@
3434
INCLUDES+=$(sort @INCLUDES@)
35+
INCLUDES+=-I@abs_top_srcdir@/lib
36+
INCLUDES+=-I@abs_top_srcdir@/xbmc
37+
INCLUDES+=-I@abs_top_srcdir@/lib/ffmpeg
38+
INCLUDES+=-I@abs_top_srcdir@/xbmc/linux
3539
DEFINES+= \
3640
-D_LINUX \
3741
-D_FILE_DEFINED \
@@ -44,6 +48,7 @@ DEFINES+= \
4448

4549
ifeq ($(findstring osx,$(ARCH)), osx)
4650
export MACOSX_DEPLOYMENT_TARGET=10.4
51+
INCLUDES+=-I@abs_top_srcdir@/xbmc/osx
4752
endif
4853

4954
ifeq ($(ARCH), powerpc-osx)

XBMC.xcodeproj/project.pbxproj

+2,106-2,071
Large diffs are not rendered by default.

addons/skin.confluence/media/Makefile addons/skin.confluence/media/Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TARGET=Textures.xbt
2-
XBMCTEX=../../../tools/TexturePacker/TexturePacker
2+
XBMCTEX=@abs_top_srcdir@/tools/TexturePacker/TexturePacker
33
IMAGES= \
44
ArrowDown.png \
55
ArrowUp.png \
@@ -321,7 +321,7 @@ $(TARGET): $(XBMCTEX) $(IMAGES)
321321
$(XBMCTEX) -input . -output $(TARGET)
322322

323323
$(XBMCTEX): force
324-
$(MAKE) -C ../../../tools/TexturePacker
324+
$(MAKE) -C @abs_top_srcdir@/tools/TexturePacker
325325

326326
clean:
327327
rm -f $(TARGET)

bootstrap

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ autoreconf -vif lib/cpluff
77
# we must autoreconf libass as we don't know till later if it's used.
88
[ -d lib/libass ] && autoreconf -vif lib/libass
99
# order matters with libbdnav and friends
10-
[ -d xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss ] && \
11-
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss
12-
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread
13-
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav
10+
[ -d lib/libdvd/libdvdcss ] && \
11+
autoreconf -vif lib/libdvd/libdvdcss
12+
autoreconf -vif lib/libdvd/libdvdread
13+
autoreconf -vif lib/libdvd/libdvdnav
1414

1515
# Clean the generated files
1616
find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;

0 commit comments

Comments
 (0)