? depcomp ? makkypoos ? stamp-h1 Index: .cvsignore =================================================================== RCS file: /cvsroot/gaim-snpp/gaim-snpp/.cvsignore,v retrieving revision 1.1 diff -u -p -r1.1 .cvsignore --- .cvsignore 28 Apr 2004 18:18:46 -0000 1.1 +++ .cvsignore 25 May 2004 00:21:27 -0000 @@ -7,8 +7,9 @@ config.log config.status config.sub configure +pre_config.h +pre_config.h.in snpp_config.h -snpp_config.h.in install-sh libtool ltmain.sh Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim-snpp/gaim-snpp/Makefile.am,v retrieving revision 1.1 diff -u -p -r1.1 Makefile.am --- Makefile.am 2 Mar 2004 17:04:43 -0000 1.1 +++ Makefile.am 25 May 2004 00:21:27 -0000 @@ -8,3 +8,10 @@ EXTRA_DIST = \ VERSION SUBDIRS = src pixmaps + +BUILT_SOURCES = snpp_config.h + +$(OBJECTS): $(BUILT_SOURCES) + +snpp_config.h: pre_config.h + $(sedpath) 's/#define PACKAGE/#define SNPP_PACKAGE/g' pre_config.h > $@ Index: configure.ac =================================================================== RCS file: /cvsroot/gaim-snpp/gaim-snpp/configure.ac,v retrieving revision 1.3 diff -u -p -r1.3 configure.ac --- configure.ac 2 Mar 2004 18:14:18 -0000 1.3 +++ configure.ac 25 May 2004 00:21:27 -0000 @@ -10,6 +10,7 @@ SNPP_VERSION="`cat ./VERSION`" AM_INIT_AUTOMAKE([gaim-snpp], $SNPP_VERSION, 'no-define') AC_DEFINE_UNQUOTED(SNPP_VERSION, "$SNPP_VERSION", [Gaim-SNPP Version]) +AC_PATH_PROG(sedpath, sed) # # Our header # @@ -107,7 +108,7 @@ AM_PROG_LIBTOOL # # Finish up # -AM_CONFIG_HEADER(snpp_config.h) +AM_CONFIG_HEADER(pre_config.h) AC_OUTPUT([Makefile pixmaps/Makefile src/Makefile