
Hello,
I tried to build what is currently in anonymous cvs. Here are (new) problems I faced in building inkscape with MinGW (and gcc not tried g++)
* modules/ps.c `SIGPIPE' undeclared -> I commented the call to signal , don't know what it does and how to fix it
* toolbox.c toolbox.c: In function `sp_toolbox_file_create': toolbox.c:342: `action' undeclared (first use in this function) -> Someone has removed the declaration SPAction *action;
* modules/extension.c undefined reference to `mkstemp' -> see http://developer.gnome.org/doc/API/2.0/glib/glib-File-Utilities.html#g-mkste... ?
* Libxml2 I had to use version 2.4 of dll because 2.6 results in a crash. Anyone has tried to link against 2.6 on linux ?
To try it :
1- Install gtk runtime from http://www.dropline.net/gtk/download.php 2- Download http://195.221.122.126/tmp/inkscape-0.36cvs-w32.exe [1.22 Mo], extract, and change the path to your gtk libs in inkscape.bat 3- Run inkscape.bat
Almost not tested but it seems that the problem when regional decimal symbol = comma (instead of dot) is back (don't know if it's due to my build or what) :( I've not included translations in the archive.
M

On Tue, 2003-11-18 at 02:35, Mael wrote:
- modules/extension.c
undefined reference to `mkstemp' -> see http://developer.gnome.org/doc/API/2.0/glib/glib-File-Utilities.html#g-mkste... ?
Not as sure on the other ones, but I did this one.
--Ted

On Tue, Nov 18, 2003 at 10:35:01AM +0100, Mael wrote:
- modules/ps.c
`SIGPIPE' undeclared -> I commented the call to signal , don't know what it does and how to fix it
This is from the printing patch I applied. Strangely, that should work under Win32... (#include <signal.h> is there...)
Of course... the printing code that it applies to won't work under Win32 until you have cygwin installed anyway...

Mael wrote:
- toolbox.c
toolbox.c: In function `sp_toolbox_file_create': toolbox.c:342: `action' undeclared (first use in this function) -> Someone has removed the declaration SPAction *action;
Oops. That was me pruing dead variables.
I've fixed it with a happier #ifdef move. Just in case someone needs it, this is what I checked into CVS:
Index: src/toolbox.c =================================================================== RCS file: /cvsroot/inkscape/inkscape/src/toolbox.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- src/toolbox.c 18 Nov 2003 14:45:45 -0000 1.12 +++ src/toolbox.c 18 Nov 2003 16:28:42 -0000 1.13 @@ -317,9 +317,18 @@ static GtkWidget * sp_toolbox_file_create (void) { +#ifdef WIN32 +#define PDIRECT +#endif +#ifdef WITH_GNOME_PRINT +#define PDIRECT +#endif GtkWidget *t, *tb, *b; GtkTooltips *tt; SPRepr *repr; +#ifdef PDIRECT + SPAction *action; +#endif
t = gtk_table_new (2, 4, TRUE); gtk_widget_show (t); @@ -331,12 +340,7 @@ sp_toolbox_button_new_from_verb (t, 4, SP_BUTTON_TYPE_NORMAL, SP_VERB_FILE_OPEN, tt); sp_toolbox_button_new_from_verb (t, 1, SP_BUTTON_TYPE_NORMAL, SP_VERB_FILE_SAVE, tt); sp_toolbox_button_new_from_verb (t, 5, SP_BUTTON_TYPE_NORMAL, SP_VERB_FILE_SAVE_AS, tt); -#ifdef WIN32 -#define PDIRECT -#endif -#ifdef WITH_GNOME_PRINT -#define PDIRECT -#endif + #ifdef PDIRECT b = sp_button_menu_new (24, SP_BUTTON_TYPE_NORMAL, 2, tt); gtk_widget_show (b);
participants (4)
-
Jon A. Cruz
-
Kees Cook
-
Mael
-
Ted Gould