--- wormux.orig/src/make.env 2004-06-01 05:01:46.000000000 +0200 +++ wormux.orig/src/make.env 2004-06-02 02:48:56.000000000 +0200 @@ -20,7 +20,7 @@ # -g : Rajoute les informations de débogage (pour utiliser GDB) # -ansi : Rejette le code non-ANSI # -pedantic : Rejette le code non-ANSI, mais vraiment tout ! -CXXFLAGS:=$(shell clanlib-config --cflags 2>/dev/null) +CXXFLAGS:= CXXFLAGS+=$(shell pkg-config libxml++-1.0 --cflags 2>/dev/null) CXXFLAGS+=-Wall ifdef RELEASE @@ -37,7 +37,7 @@ LINUX=1 # Librairies -LIBS=$(shell clanlib-config --libs 2>/dev/null) +LIBS=-L/usr/lib/clanlib-0.6.5 -lclanCore -lclanApp LIBS+=$(shell pkg-config libxml++-1.0 --libs 2>/dev/null) LIBS+=-lclanDisplay -lclanJPEG -lclanPNG --- wormux.orig/src/Makefile 2004-05-31 21:19:06.000000000 +0200 +++ wormux.orig/src/Makefile 2004-06-02 02:48:05.000000000 +0200 @@ -30,8 +30,8 @@ # Vérifie qu'on a toutes les librairies nécessaires checklib: - @clanlib-config --libs 1>/dev/null 2>&1 \ - || (echo -e $(ERREUR_CLANLIB); exit 1) +# @clanlib-config --libs 1>/dev/null 2>&1 \ +# || (echo -e $(ERREUR_CLANLIB); exit 1) @pkg-config libxml++-1.0 --libs 1>/dev/null 2>&1 \ || (echo -e $(ERREUR_LIBXMLPLUSPLUS); exit 1)