From: <ev...@us...> - 2006-08-19 01:50:27
|
Revision: 16863 Author: evands Date: 2006-08-18 18:50:10 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16863&view=rev Log Message: ----------- Renamed 'core' to 'libgaim' Modified Paths: -------------- trunk/Makefile.am trunk/configure.ac trunk/console/Makefile.am trunk/gtk/Makefile.am trunk/gtk/plugins/Makefile.am trunk/gtk/plugins/crazychat/Makefile.am trunk/gtk/plugins/docklet/Makefile.am trunk/gtk/plugins/gestures/Makefile.am trunk/gtk/plugins/gevolution/Makefile.am trunk/gtk/plugins/musicmessaging/Makefile.am trunk/gtk/plugins/ticker/Makefile.am trunk/libgaim/plugins/Makefile.am trunk/libgaim/plugins/mono/loader/Makefile.am trunk/libgaim/plugins/perl/Makefile.am trunk/libgaim/plugins/ssl/Makefile.am trunk/libgaim/plugins/tcl/Makefile.am trunk/libgaim/protocols/bonjour/Makefile.am trunk/libgaim/protocols/gg/Makefile.am trunk/libgaim/protocols/irc/Makefile.am trunk/libgaim/protocols/jabber/Makefile.am trunk/libgaim/protocols/msn/Makefile.am trunk/libgaim/protocols/novell/Makefile.am trunk/libgaim/protocols/oscar/Makefile.am trunk/libgaim/protocols/qq/Makefile.am trunk/libgaim/protocols/sametime/Makefile.am trunk/libgaim/protocols/silc/Makefile.am trunk/libgaim/protocols/simple/Makefile.am trunk/libgaim/protocols/toc/Makefile.am trunk/libgaim/protocols/yahoo/Makefile.am trunk/libgaim/protocols/zephyr/Makefile.am Added Paths: ----------- trunk/libgaim/ Removed Paths: ------------- trunk/core/ trunk/src/ Modified: trunk/Makefile.am =================================================================== --- trunk/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -56,7 +56,7 @@ GNT_DIR=console endif -SUBDIRS = core doc $(GNT_DIR) $(GTK_DIR) m4macros po +SUBDIRS = libgaim doc $(GNT_DIR) $(GTK_DIR) m4macros po docs: Doxyfile if HAVE_DOXYGEN Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/configure.ac 2006-08-19 01:50:10 UTC (rev 16863) @@ -1821,30 +1821,30 @@ gtk/plugins/musicmessaging/Makefile gtk/sounds/Makefile gtk/plugins/ticker/Makefile - core/plugins/Makefile - core/plugins/mono/Makefile - core/plugins/mono/api/Makefile - core/plugins/mono/loader/Makefile - core/plugins/perl/Makefile - core/plugins/perl/common/Makefile.PL - core/plugins/ssl/Makefile - core/plugins/tcl/Makefile - core/Makefile - core/protocols/Makefile - core/protocols/bonjour/Makefile - core/protocols/gg/Makefile - core/protocols/irc/Makefile - core/protocols/jabber/Makefile - core/protocols/msn/Makefile - core/protocols/novell/Makefile - core/protocols/oscar/Makefile - core/protocols/qq/Makefile - core/protocols/sametime/Makefile - core/protocols/silc/Makefile - core/protocols/simple/Makefile - core/protocols/toc/Makefile - core/protocols/yahoo/Makefile - core/protocols/zephyr/Makefile + libgaim/plugins/Makefile + libgaim/plugins/mono/Makefile + libgaim/plugins/mono/api/Makefile + libgaim/plugins/mono/loader/Makefile + libgaim/plugins/perl/Makefile + libgaim/plugins/perl/common/Makefile.PL + libgaim/plugins/ssl/Makefile + libgaim/plugins/tcl/Makefile + libgaim/Makefile + libgaim/protocols/Makefile + libgaim/protocols/bonjour/Makefile + libgaim/protocols/gg/Makefile + libgaim/protocols/irc/Makefile + libgaim/protocols/jabber/Makefile + libgaim/protocols/msn/Makefile + libgaim/protocols/novell/Makefile + libgaim/protocols/oscar/Makefile + libgaim/protocols/qq/Makefile + libgaim/protocols/sametime/Makefile + libgaim/protocols/silc/Makefile + libgaim/protocols/simple/Makefile + libgaim/protocols/toc/Makefile + libgaim/protocols/yahoo/Makefile + libgaim/protocols/zephyr/Makefile console/Makefile console/plugins/Makefile po/Makefile.in Modified: trunk/console/Makefile.am =================================================================== --- trunk/console/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/console/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -47,7 +47,7 @@ $(GLIB_LIBS) \ $(LIBXML_LIBS) \ -L./libgnt/ -lgnt \ - -L$(top_srcdir)/core -lgaim + -L$(top_srcdir)/libgaim -lgaim AM_CPPFLAGS = \ -DSTANDALONE \ @@ -56,7 +56,7 @@ -DLIBDIR=\"$(libdir)/gaim/\" \ -DLOCALEDIR=\"$(datadir)/locale\" \ -DSYSCONFDIR=\"$(sysconfdir)\" \ - -I$(top_srcdir)/core/ \ + -I$(top_srcdir)/libgaim/ \ -I ./libgnt/ \ $(GSTREAMER_CFLAGS) \ $(DEBUG_CFLAGS) \ Modified: trunk/gtk/Makefile.am =================================================================== --- trunk/gtk/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -163,7 +163,7 @@ $(STARTUP_NOTIFICATION_LIBS) \ $(LIBXML_LIBS) \ $(GTK_LIBS) \ - -L$(top_srcdir)/core -lgaim + -L$(top_srcdir)/libgaim -lgaim AM_CPPFLAGS = \ -DBR_PTHREADS=0 \ @@ -171,7 +171,7 @@ -DLIBDIR=\"$(libdir)/gaim/\" \ -DLOCALEDIR=\"$(datadir)/locale\" \ -DSYSCONFDIR=\"$(sysconfdir)\" \ - -I$(top_srcdir)/core/ \ + -I$(top_srcdir)/libgaim/ \ $(GSTREAMER_CFLAGS) \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ Modified: trunk/gtk/plugins/Makefile.am =================================================================== --- trunk/gtk/plugins/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -67,7 +67,7 @@ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ -I$(top_builddir)/src \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ Modified: trunk/gtk/plugins/crazychat/Makefile.am =================================================================== --- trunk/gtk/plugins/crazychat/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/crazychat/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -32,7 +32,7 @@ #-I$(top_srcdir)/include AM_CPPFLAGS = -DGAIM_PLUGINS \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(GTK_CFLAGS) \ $(GTKGLEXT_CFLAGS) \ Modified: trunk/gtk/plugins/docklet/Makefile.am =================================================================== --- trunk/gtk/plugins/docklet/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/docklet/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -24,7 +24,7 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(DEBUG_CFLAGS) \ $(X_CFLAGS) \ Modified: trunk/gtk/plugins/gestures/Makefile.am =================================================================== --- trunk/gtk/plugins/gestures/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/gestures/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -18,7 +18,7 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) Modified: trunk/gtk/plugins/gevolution/Makefile.am =================================================================== --- trunk/gtk/plugins/gevolution/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/gevolution/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -25,7 +25,7 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(EVOLUTION_ADDRESSBOOK_CFLAGS) \ $(DEBUG_CFLAGS) \ Modified: trunk/gtk/plugins/musicmessaging/Makefile.am =================================================================== --- trunk/gtk/plugins/musicmessaging/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/musicmessaging/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -22,14 +22,14 @@ .PHONY: always -$(top_builddir)/core/dbus-types.h: always +$(top_builddir)/libgaim/dbus-types.h: always cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F) -music-messaging-bindings.c: $(top_srcdir)/core/dbus-analyze-functions.py $(musicmessaging_la_SOURCES) +music-messaging-bindings.c: $(top_srcdir)/libgaim/dbus-analyze-functions.py $(musicmessaging_la_SOURCES) cat $(srcdir)/$(musicmessaging_la_SOURCES) | \ - $(PYTHON) $(top_srcdir)/core/dbus-analyze-functions.py --export-only > $@ + $(PYTHON) $(top_srcdir)/libgaim/dbus-analyze-functions.py --export-only > $@ -$(musicmessaging_la_OBJECTS) musicmessaging.so: music-messaging-bindings.c $(top_builddir)/core/dbus-types.h +$(musicmessaging_la_OBJECTS) musicmessaging.so: music-messaging-bindings.c $(top_builddir)/libgaim/dbus-types.h endif endif @@ -37,8 +37,8 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ - -I$(top_builddir)/core \ - -I$(top_srcdir)/core \ + -I$(top_builddir)/libgaim \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ Modified: trunk/gtk/plugins/ticker/Makefile.am =================================================================== --- trunk/gtk/plugins/ticker/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/gtk/plugins/ticker/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -19,7 +19,7 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) Copied: trunk/libgaim (from rev 16862, trunk/core) Modified: trunk/libgaim/plugins/Makefile.am =================================================================== --- trunk/core/plugins/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/plugins/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -53,14 +53,14 @@ .PHONY: always -$(top_builddir)/core/dbus-types.h: always +$(top_builddir)/libgaim/dbus-types.h: always cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F) -dbus-example-bindings.c: $(top_srcdir)/core/dbus-analyze-functions.py $(dbus_example_la_SOURCES) +dbus-example-bindings.c: $(top_srcdir)/libgaim/dbus-analyze-functions.py $(dbus_example_la_SOURCES) cat $(srcdir)/$(dbus_example_la_SOURCES) | \ - $(PYTHON) $(top_srcdir)/core/dbus-analyze-functions.py --export-only > $@ + $(PYTHON) $(top_srcdir)/libgaim/dbus-analyze-functions.py --export-only > $@ -$(dbus_example_la_OBJECTS) dbus-example.so: dbus-example-bindings.c $(top_builddir)/core/dbus-types.h +$(dbus_example_la_OBJECTS) dbus-example.so: dbus-example-bindings.c $(top_builddir)/libgaim/dbus-types.h endif # ENABLE_DBUS @@ -82,8 +82,8 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ - -I$(top_builddir)/core \ - -I$(top_srcdir)/core \ + -I$(top_builddir)/libgaim \ + -I$(top_srcdir)/libgaim \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(PLUGIN_CFLAGS) \ Modified: trunk/libgaim/plugins/mono/loader/Makefile.am =================================================================== --- trunk/core/plugins/mono/loader/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/plugins/mono/loader/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -19,7 +19,7 @@ AM_CPPFLAGS = \ -DVERSION=\"$(VERSION)\" \ -I$(top_srcdir) \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(DEBUG_CFLAGS) \ $(PLUGIN_CFLAGS) \ $(MONO_CFLAGS) Modified: trunk/libgaim/plugins/perl/Makefile.am =================================================================== --- trunk/core/plugins/perl/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/plugins/perl/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -157,7 +157,7 @@ AM_CPPFLAGS = \ -DVERSION=\"$(VERSION)\" \ -I$(top_srcdir) \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/gtk \ # FIXME $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ Modified: trunk/libgaim/plugins/ssl/Makefile.am =================================================================== --- trunk/core/plugins/ssl/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/plugins/ssl/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -26,7 +26,7 @@ AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DLIBDIR=\"$(libdir)/gaim/\" \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(PLUGIN_CFLAGS) \ Modified: trunk/libgaim/plugins/tcl/Makefile.am =================================================================== --- trunk/core/plugins/tcl/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/plugins/tcl/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -12,7 +12,7 @@ AM_CPPFLAGS = \ -DVERSION=\"$(VERSION)\" \ -I$(top_srcdir) \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(PLUGIN_CFLAGS) \ Modified: trunk/libgaim/protocols/bonjour/Makefile.am =================================================================== --- trunk/core/protocols/bonjour/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/bonjour/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -35,7 +35,7 @@ AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) \ $(HOWL_CFLAGS) Modified: trunk/libgaim/protocols/gg/Makefile.am =================================================================== --- trunk/core/protocols/gg/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/gg/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -53,7 +53,7 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/irc/Makefile.am =================================================================== --- trunk/core/protocols/irc/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/irc/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -28,6 +28,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/jabber/Makefile.am =================================================================== --- trunk/core/protocols/jabber/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/jabber/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -58,7 +58,7 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(LIBXML_CFLAGS) Modified: trunk/libgaim/protocols/msn/Makefile.am =================================================================== --- trunk/core/protocols/msn/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/msn/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -83,6 +83,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/novell/Makefile.am =================================================================== --- trunk/core/protocols/novell/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/novell/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -50,6 +50,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) Modified: trunk/libgaim/protocols/oscar/Makefile.am =================================================================== --- trunk/core/protocols/oscar/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/oscar/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -64,6 +64,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/qq/Makefile.am =================================================================== --- trunk/core/protocols/qq/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/qq/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -91,7 +91,7 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ -DVERSION=\"$(VERSION)\" \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ Modified: trunk/libgaim/protocols/sametime/Makefile.am =================================================================== --- trunk/core/protocols/sametime/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/sametime/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -34,7 +34,7 @@ AM_CFLAGS = \ $(GLIB_CFLAGS) $(MEANWHILE_CFLAGS) \ $(DEBUG_CFLAGS) \ - -I$(top_srcdir)/core + -I$(top_srcdir)/libgaim AM_CPPFLAGS = \ Modified: trunk/libgaim/protocols/silc/Makefile.am =================================================================== --- trunk/core/protocols/silc/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/silc/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -30,6 +30,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/simple/Makefile.am =================================================================== --- trunk/core/protocols/simple/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/simple/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -29,6 +29,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/toc/Makefile.am =================================================================== --- trunk/core/protocols/toc/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/toc/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -26,6 +26,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/yahoo/Makefile.am =================================================================== --- trunk/core/protocols/yahoo/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/yahoo/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -47,6 +47,6 @@ endif AM_CPPFLAGS = \ - -I$(top_srcdir)/core \ + -I$(top_srcdir)/libgaim \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS) Modified: trunk/libgaim/protocols/zephyr/Makefile.am =================================================================== --- trunk/core/protocols/zephyr/Makefile.am 2006-08-19 01:37:26 UTC (rev 16862) +++ trunk/libgaim/protocols/zephyr/Makefile.am 2006-08-19 01:50:10 UTC (rev 16863) @@ -101,8 +101,8 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ - -I$(top_srcdir)/core \ - -I$(top_srcdir)/core/protocols \ + -I$(top_srcdir)/libgaim \ + -I$(top_srcdir)/libgaim/protocols \ -DCONFDIR=\"$(confdir)\" \ $(GLIB_CFLAGS) \ $(KRB4_CFLAGS) \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |