r15754 So I'm getting a good build on W2K after the following
--- paramcolor.cpp (revision 15754) +++ paramcolor.cpp (working copy) @@ -73,9 +73,9 @@ if (strlen(defaulthex) == 6) { int r = 0, g = 0, b = 0; std::stringstream ss; - ss << strndup(defaulthex, 2); + ss << g_strndup(defaulthex, 2); ss >> std::hex >> r; - ss << strndup(defaulthex + 2, 2); + ss << g_strndup(defaulthex + 2, 2); ss >> std::hex >> g; ss << defaulthex + 4; ss >> std::hex >> b;
--- build.xml (revision 15754) +++ build.xml (working copy) @@ -180,6 +180,7 @@ destdir="${build}/obj"> <fileset dir="${src}"> <!-- THINGS TO EXCLUDE --> + <exclude name="extension/internal/bitmap/.*" /> <exclude name="ast/.*"/> <exclude name="bonobo/.*"/> <exclude name="deptool.cpp"/>
Thanks, Kent
On 8/13/07, Ted Gould <ted@...11...> wrote:
On Mon, 2007-08-13 at 08:07 -0500, Bob Jamison wrote:
- Add the /bitmap directory to the <excludes> list for the cc task.
But, yes, if the rest of Inkscape has a code hook to the /bitmap directory, then somewhere you will need to have a switch like that.
I think this makes sense for now. The init.cpp file won't call the stuff in the bitmap directory unless WITH_IMAGE_MAGICK is set.
--Ted
This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Inkscape-devel mailing list Inkscape-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-devel