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

Collapse All | Expand All

(-)wormux.orig/src/make.env (-2 / +2 lines)
Lines 52-58 Link Here
52
# -g        : Rajoute les informations de débogage (pour utiliser GDB)
52
# -g        : Rajoute les informations de débogage (pour utiliser GDB)
53
# -ansi     : Rejette le code non-ANSI
53
# -ansi     : Rejette le code non-ANSI
54
# -pedantic : Rejette le code non-ANSI, mais vraiment tout !
54
# -pedantic : Rejette le code non-ANSI, mais vraiment tout !
55
CXXFLAGS:=$(shell pkg-config clanlib --cflags 2>/dev/null || clanlib-config --cflags 2>/dev/null )
55
CXXFLAGS:=
56
CXXFLAGS+=$(shell pkg-config libxml++-1.0 --cflags 2>/dev/null)
56
CXXFLAGS+=$(shell pkg-config libxml++-1.0 --cflags 2>/dev/null)
57
CXXFLAGS+=-Wall
57
CXXFLAGS+=-Wall
58
ifdef RELEASE
58
ifdef RELEASE
Lines 69-75 Link Here
69
LINUX=1
69
LINUX=1
70
70
71
# Librairies
71
# Librairies
72
LIBS=$(shell pkg-config clanlib --libs 2>/dev/null || clanlib-config --libs 2>/dev/null )
72
LIBS=-L/usr/lib/clanlib-0.6.5 -lclanCore -lclanApp
73
LIBS+=$(shell pkg-config libxml++-1.0 --libs 2>/dev/null)
73
LIBS+=$(shell pkg-config libxml++-1.0 --libs 2>/dev/null)
74
LIBS+=-lclanDisplay -lclanJPEG -lclanPNG -lclanSound -lclanVorbis
74
LIBS+=-lclanDisplay -lclanJPEG -lclanPNG -lclanSound -lclanVorbis
75
75
(-)wormux.orig/src/Makefile (-3 / +3 lines)
Lines 33-41 Link Here
33
33
34
# Vérifie qu'on a toutes les librairies nécessaires
34
# Vérifie qu'on a toutes les librairies nécessaires
35
checklib:
35
checklib:
36
	@(pkg-config clanlib --libs 1>/dev/null 2>&1 \
36
#	@(pkg-config clanlib --libs 1>/dev/null 2>&1 \
37
	 || clanlib-config --libs 1>/dev/null 2>&1) \
37
#	 || clanlib-config --libs 1>/dev/null 2>&1) \
38
	 || (echo -e $(ERREUR_CLANLIB); exit 1)
38
#	 || (echo -e $(ERREUR_CLANLIB); exit 1)
39
	@pkg-config libxml++-1.0 --libs 1>/dev/null 2>&1 \
39
	@pkg-config libxml++-1.0 --libs 1>/dev/null 2>&1 \
40
	 || (echo -e $(ERREUR_LIBXMLPLUSPLUS); exit 1)
40
	 || (echo -e $(ERREUR_LIBXMLPLUSPLUS); exit 1)
41
41

Return to bug 52679