On 05/18/2011 02:32 PM, Antonio Trande wrote:
Therefore, shall i add
$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS)
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
into make file before to start compiling ?
Indeed. This is because libnotify devs removed this -I flag
with libnotify 0.7.2 (see http://git.gnome.org/browse/libnotify/commit/?id=0eb56b2f)
in order to allow it to be compiled with applications using
gtk3, and also with application using gtk2 (they use different
-I flag).
--
Antonio Trande
Homepage: http://www.computer-legacy.net
Sip Address : sip:sagitter AT ekiga.net
_______________________________________________
ekiga-list mailing list
ekiga-list gnome org
http://mail.gnome.org/mailman/listinfo/ekiga-list
In file: lib/engine/components/libnotify/Makefile, add GTK_CFLAGS
like this:
libnotify-main.lo: $(libnotify_dir)/libnotify-main.cpp
$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS)
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(GTK_CFLAGS)
Then it should compile.
|