Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 258082 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in (+1 lines)
Lines 340-345 Link Here
340
                [tools/XBMCTex/Makefile]
340
                [tools/XBMCTex/Makefile]
341
                [xbmc/cores/dvdplayer/Codecs/Makefile]
341
                [xbmc/cores/dvdplayer/Codecs/Makefile]
342
                [xbmc/lib/cximage-6.0/Makefile]
342
                [xbmc/lib/cximage-6.0/Makefile]
343
                [xbmc/lib/cximage-6.0/Makefile.include]
343
                [xbmc/cores/paplayer/MACDll/Makefile]
344
                [xbmc/cores/paplayer/MACDll/Makefile]
344
                [xbmc/cores/paplayer/MIDCodec/Makefile]
345
                [xbmc/cores/paplayer/MIDCodec/Makefile]
345
		[xbmc/cores/paplayer/AACCodec/Makefile]
346
		[xbmc/cores/paplayer/AACCodec/Makefile]
(-)xbmc/lib/cximage-6.0/Makefile.include.in (+13 lines)
Line 0 Link Here
1
ARCH=@ARCH@
2
CFLAGS+=-O2
3
4
ifeq ($(ARCH), x86_64-linux)
5
    CFLAGS+=-fPIC
6
    CXXFLAGS+=$(CFLAGS)
7
endif
8
9
ifeq ($(ARCH), osx)
10
   CFLAGS+= -fPIC -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -I/opt/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DXBMC -DNO_LCMS -DNO_JPEG
11
   CXXFLAGS+= $(CFLAGS)
12
endif
13
(-)xbmc/lib/libPython/Python/Modules/readline.c (-1 / +3 lines)
Lines 36-41 Link Here
36
#ifdef HAVE_RL_COMPLETION_MATCHES
36
#ifdef HAVE_RL_COMPLETION_MATCHES
37
#define completion_matches(x, y) \
37
#define completion_matches(x, y) \
38
	rl_completion_matches((x), ((rl_compentry_func_t *)(y)))
38
	rl_completion_matches((x), ((rl_compentry_func_t *)(y)))
39
#else
40
extern char **completion_matches(char *, rl_compentry_func_t *);
39
#endif
41
#endif
40
42
41
43
Lines 634-640 Link Here
634
/* C function to call the Python completer. */
636
/* C function to call the Python completer. */
635
637
636
static char *
638
static char *
637
on_completion(char *text, int state)
639
on_completion(const char *text, int state)
638
{
640
{
639
	char *result = NULL;
641
	char *result = NULL;
640
	if (completer != NULL) {
642
	if (completer != NULL) {

Return to bug 258082