From: Duncan C. <dun...@us...> - 2004-12-17 21:21:57
|
Update of /cvsroot/gtk2hs/gtk2hs/mk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12068/mk Modified Files: common.mk Log Message: New bindings to GtkMozEmbed contributed by Wolfram Kahl <ka...@ca...> (with previous work by Scott West and Jonas Svensson). New class and signal added to hierarchy.list and gtkmarshal.list Build support for mozembed package added to configure.ac and Makefile.am Fix to mk/common.mk to not -#include<config.h> when compiling .hs to .o as it is unnecessary and breaks for modules that do not have -I/usr/include/gtk-2.0 in their CPPFLAGS. Index: common.mk =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/mk/common.mk,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- common.mk 14 Dec 2004 13:18:01 -0000 1.45 +++ common.mk 17 Dec 2004 21:21:45 -0000 1.46 @@ -20,8 +20,7 @@ $(call getVar,$<,HCFLAGS) -i$(VPATH) \ $(addprefix -package ,$($(NAME)_PACKAGEDEPS)) \ $(addprefix -package-name ,$(notdir $(basename $($(NAME)_PACKAGE)))) \ - $(addprefix '-#include<,$(addsuffix >',$(CONFIG_H) \ - $($(NAME)_HEADER))) \ + $(addprefix '-#include<,$(addsuffix >', $($(NAME)_HEADER))) \ $(AM_CPPFLAGS) $($(NAME)_CPPFLAGS)) .DELETE_ON_ERROR : %.deps |