Changes between Initial Version and Version 3 of Ticket #13963


Ignore:
Timestamp:
Jan 17, 2008, 6:07:48 PM (17 years ago)
Author:
jmpp@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13963

    • Property Keywords evince nomaintainer added
    • Property Cc sfiera@… added
    • Property Milestone changed from to Port Bugs
  • Ticket #13963 – Description

    initial v3  
     1{{{
    12G5Q:khillig > sudo port install -f evince
    23--->  Fetching evince
     
    2728make[1]: *** [all-recursive] Error 1
    2829make: *** [all] Error 2
    29 
     30}}}
    3031
    3132I took a look at comics-document.c and I don't see anything obviously wrong with line 109, where the first error is reported:
    3233
     34{{{
    3335        gchar *list_files_command = NULL, *stdout, *quoted_file, *mime_type;
     36}}}
    3437
    3538The error message - parse error before '&' token - is mysterious to me, as there is no '&' on that line; given the other reported errors it looks like it's barfing on the '*stdout', since it says 'quoted_file' and 'mime_type' are undeclared, and the error on line 140 refers to this:
    3639
     40{{{
    3741        success = g_spawn_command_line_sync (list_files_command,
    3842                                             &stdout, NULL, &retval, error);
     43}}}
    3944
    4045where I suspect the '&stdout' is the culprit.