<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - util/cairo-script: compilation errors on AIX"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=89339">89339</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>util/cairo-script: compilation errors on AIX
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>cairo
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>unspecified
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Other
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>medium
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>general
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>chris@chris-wilson.co.uk
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>michael.haubenwallner@ssi-schaefer.com
          </td>
        </tr>

        <tr>
          <th>QA Contact</th>
          <td>cairo-bugs@cairographics.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Using gcc on AIX I do get these compiler error:

/.../cairo-9999/util/cairo-script/cairo-script-scanner.c: In function
'_buffer_grow':
/.../cairo-9999/util/cairo-script/cairo-script-scanner.c:200: error:
'csi_scanner_t' has no member named '__jmpbuf'
/.../cairo-9999/util/cairo-script/cairo-script-scanner.c:206: error:
'csi_scanner_t' has no member named '__jmpbuf'

Problem here is that
*) cairo-script-scanner.c   does #include "cairo-script-private.h"
*) "cairo-script-private.h" does #include "config.h"
                                 #include <setjmp.h>
                                 typedef struct _csi_scanner csi_scanner_t;
                                 struct _csi_scanner { jmp_buf jmpbuf; ...}
*) cairo-script-scanner.c   does #include <math.h>
*) <math.h>                 does #include <stdlib.h>
*) <stdlib.h>               does #include <sys/wait.h>
*) <sys/wait.h>             does #include <sys/signal.h>
*) <sys/signal.h>           does #include <sys/context.h>
*) <sys/context.h>          does #define jmpbuf __jmpbuf
*) cairo-script-scanner.c   does use: _csi_scanner.jmpbuf
             which is now defined to: _csi_scanner.__jmpbuf
           but was declared above as: _csi_scanner.jmpbuf</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>