<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 - Missing line continuation in definition of MAYBE_WARN in configure"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=89750">89750</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Missing line continuation in definition of MAYBE_WARN in configure
          </td>
        </tr>

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

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

        <tr>
          <th>Hardware</th>
          <td>x86-64 (AMD64)
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Mac OS X (All)
          </td>
        </tr>

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

        <tr>
          <th>Severity</th>
          <td>minor
          </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>baker@usgs.gov
          </td>
        </tr>

        <tr>
          <th>QA Contact</th>
          <td>cairo-bugs@cairographics.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>There is an unintentional (benign) missing line continuation "\" in the
definition of MAYBE_WARN in configure.  configure completes and issues a
WARNING:

configure: WARNING: cache variable cairo_cv_warn_maybe contains a newline

The error is at line 18461 in configure (release 1.14.2):

$ grep -w -n '[-]Wpacked' configure
18461:-Wpointer-arith -Wwrite-strings -Wsign-compare -Wpacked

I fixed it with sed:

$ sed -i -e '/^MAYBE_WARN=/,/^MAYBE_C_SPECIFIC_WARN=/s/-Wpacked$/-Wpacked \\/'
configure

$ grep -w -n '[-]Wpacked' configure
18461:-Wpointer-arith -Wwrite-strings -Wsign-compare -Wpacked \</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>