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 20-26 Link Here
20
# -g        : Rajoute les informations de débogage (pour utiliser GDB)
20
# -g        : Rajoute les informations de débogage (pour utiliser GDB)
21
# -ansi     : Rejette le code non-ANSI
21
# -ansi     : Rejette le code non-ANSI
22
# -pedantic : Rejette le code non-ANSI, mais vraiment tout !
22
# -pedantic : Rejette le code non-ANSI, mais vraiment tout !
23
CXXFLAGS:=$(shell clanlib-config --cflags 2>/dev/null)
23
CXXFLAGS:=
24
CXXFLAGS+=$(shell pkg-config libxml++-1.0 --cflags 2>/dev/null)
24
CXXFLAGS+=$(shell pkg-config libxml++-1.0 --cflags 2>/dev/null)
25
CXXFLAGS+=-Wall
25
CXXFLAGS+=-Wall
26
ifdef RELEASE
26
ifdef RELEASE
Lines 37-43 Link Here
37
LINUX=1
37
LINUX=1
38
38
39
# Librairies
39
# Librairies
40
LIBS=$(shell clanlib-config --libs 2>/dev/null)
40
LIBS=-L/usr/lib/clanlib-0.6.5 -lclanCore -lclanApp
41
LIBS+=$(shell pkg-config libxml++-1.0 --libs 2>/dev/null)
41
LIBS+=$(shell pkg-config libxml++-1.0 --libs 2>/dev/null)
42
LIBS+=-lclanDisplay -lclanJPEG -lclanPNG
42
LIBS+=-lclanDisplay -lclanJPEG -lclanPNG
43
43
(-)wormux.orig/src/Makefile (-2 / +2 lines)
Lines 30-37 Link Here
30
30
31
# Vérifie qu'on a toutes les librairies nécessaires
31
# Vérifie qu'on a toutes les librairies nécessaires
32
checklib:
32
checklib:
33
	@clanlib-config --libs 1>/dev/null 2>&1 \
33
#	@clanlib-config --libs 1>/dev/null 2>&1 \
34
	 || (echo -e $(ERREUR_CLANLIB); exit 1)
34
#	 || (echo -e $(ERREUR_CLANLIB); exit 1)
35
	@pkg-config libxml++-1.0 --libs 1>/dev/null 2>&1 \
35
	@pkg-config libxml++-1.0 --libs 1>/dev/null 2>&1 \
36
	 || (echo -e $(ERREUR_LIBXMLPLUSPLUS); exit 1)
36
	 || (echo -e $(ERREUR_LIBXMLPLUSPLUS); exit 1)
37
37

Return to bug 52679