[Gaim-bnetg-commits] gaim-bnetg Makefile.am, 1.1.1.1, 1.2 README, 1.1.1.1, 1.2 configure.ac, 1.1.1.
Status: Pre-Alpha
Brought to you by:
evew
|
From: Dario Z. <ev...@us...> - 2007-06-12 15:23:33
|
Update of /cvsroot/gaim-bnetg/gaim-bnetg In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21558 Modified Files: Makefile.am README configure.ac Log Message: First attempt to make the old code compatible with the new structure of pidgin/libpurple. Index: README =================================================================== RCS file: /cvsroot/gaim-bnetg/gaim-bnetg/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** README 3 Feb 2005 18:21:26 -0000 1.1.1.1 --- README 12 Jun 2007 15:23:23 -0000 1.2 *************** *** 1,3 **** ! gaim-bnetg: Protocol Plugin (prpl) for Gaim to send messages via Battle.Net Games protocol. --- 1,3 ---- ! pidgin-bnetg: Protocol Plugin (prpl) for Gaim to send messages via Battle.Net Games protocol. Index: configure.ac =================================================================== RCS file: /cvsroot/gaim-bnetg/gaim-bnetg/configure.ac,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** configure.ac 3 Feb 2005 18:21:26 -0000 1.1.1.1 --- configure.ac 12 Jun 2007 15:23:23 -0000 1.2 *************** *** 4,9 **** # ! AC_INIT([gaim-bnetg], [0.0.1], [gai...@li...]) AC_CANONICAL_SYSTEM AM_CONFIG_HEADER(pre_config.h) --- 4,10 ---- # ! AC_INIT([pidgin-bnetg], [0.0.1], [pid...@li...]) AC_CANONICAL_SYSTEM + AC_GNU_SOURCE AM_CONFIG_HEADER(pre_config.h) *************** *** 34,38 **** # AH_TOP([ /* our header */ ! #ifndef BNETG_CONFIG_H #define BNETG_CONFIG_H ]) --- 35,39 ---- # AH_TOP([ /* our header */ ! #ifndef _CONFIG_H #define BNETG_CONFIG_H ]) *************** *** 44,48 **** # Add a few convience defines to our header # ! AC_DEFINE_UNQUOTED(BNETG_WEBSITE, "http://gaim-bnetg.sourceforge.net", [Gaim-BNETG Website]) # --- 45,49 ---- # Add a few convience defines to our header # ! AC_DEFINE_UNQUOTED(BNETG_WEBSITE, "http://gaim-bnetg.sourceforge.net", [Pidgin-BNETG Website]) # *************** *** 50,54 **** # ALL_LINGUAS="" ! AM_GNU_GETTEXT_VERSION(0.10.40) AM_GNU_GETTEXT --- 51,55 ---- # ALL_LINGUAS="" ! AM_GNU_GETTEXT_VERSION([0.16.1]) AM_GNU_GETTEXT *************** *** 75,87 **** # ! # Check for Gaim # ! PKG_CHECK_MODULES(GAIM, gaim, ! [ ! AC_DEFINE(HAVE_GAIM, 1, [Define if we've found gaim.]) ! ]) ! ! AC_SUBST(GAIM_CFLAGS) # --- 76,86 ---- # ! # Check for Pidgin # ! AM_PATH_PURPLE(2.0.1,,AC_MSG_ERROR([ ! *** libpurple 2.0.1 is required to build pidgin-bnet; please make sure you have ! *** the libpurple development headers installed.])) ! AC_SUBST(PURPLE_CFLAGS) # *************** *** 90,94 **** AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ ! *** GLib 2.0 is required to build gaim-bnet; please make sure you have *** the GLib development headers installed. The latest version of GLib is *** always available at http://www.gtk.org/.])) --- 89,93 ---- AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ ! *** GLib 2.0 is required to build pidgin-bnet; please make sure you have *** the GLib development headers installed. The latest version of GLib is *** always available at http://www.gtk.org/.])) *************** *** 126,130 **** AC_OUTPUT([Makefile VERSION - doc/Makefile intl/Makefile pixmaps/Makefile --- 125,128 ---- Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim-bnetg/gaim-bnetg/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 3 Feb 2005 18:21:26 -0000 1.1.1.1 --- Makefile.am 12 Jun 2007 15:23:23 -0000 1.2 *************** *** 9,13 **** po/ChangeLog ! SUBDIRS = doc intl pixmaps po src BUILT_SOURCES = bnetg_config.h --- 9,13 ---- po/ChangeLog ! SUBDIRS = intl pixmaps po src BUILT_SOURCES = bnetg_config.h |