From: Fridrich S. <str...@us...> - 2006-06-18 14:44:11
|
Update of /cvsroot/libwpg/libwpg/src/conv/raw In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8436/src/conv/raw Modified Files: Makefile.am main.cpp Log Message: Separate stream implementation from the rest of the library Index: main.cpp =================================================================== RCS file: /cvsroot/libwpg/libwpg/src/conv/raw/main.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- main.cpp 17 Jun 2006 08:11:53 -0000 1.8 +++ main.cpp 18 Jun 2006 14:43:57 -0000 1.9 @@ -28,6 +28,7 @@ #include <stdio.h> #include "libwpg.h" +#include "WPGStreamImplementation.h" using namespace libwpg; Index: Makefile.am =================================================================== RCS file: /cvsroot/libwpg/libwpg/src/conv/raw/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 1 Feb 2005 17:15:56 -0000 1.3 +++ Makefile.am 18 Jun 2006 14:43:57 -0000 1.4 @@ -11,7 +11,7 @@ wpg2raw_LDFLAGS = -L../../lib/ wpg2raw_DEPENDENCIES = @WPG2RAW_WIN32_RESOURCE@ -wpg2raw_LDADD = -lwpg-1 $(LIBWPG_LIBS) @WPG2RAW_WIN32_RESOURCE@ +wpg2raw_LDADD = -lwpg-1 -lwpg-stream-1 $(LIBWPG_LIBS) @WPG2RAW_WIN32_RESOURCE@ wpg2raw_SOURCES = \ main.cpp |