<html>
    <head>
      <base href="https://bugs.webkit.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 - [EFL] gnutls-3.3.0 jhbuild module build fails on Ubuntu 15.10"
   href="https://bugs.webkit.org/show_bug.cgi?id=150622">150622</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[EFL] gnutls-3.3.0 jhbuild module build fails on Ubuntu 15.10
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>WebKit
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>Other
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Unspecified
          </td>
        </tr>

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

        <tr>
          <th>Severity</th>
          <td>Normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P2
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>New Bugs
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>webkit-unassigned&#64;lists.webkit.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>ossy&#64;webkit.org
          </td>
        </tr>

        <tr>
          <th>Blocks</th>
          <td>150619
          </td>
        </tr></table>
      <p>
        <div>
        <pre>In file included from sha-padlock.c:29:0:
sha-padlock.c: In function 'padlock_sha1_update':
sha-padlock.c:81:46: error: 'struct sha1_ctx' has no member named 'count_high'
  MD_UPDATE(ctx, length, data, SHA1_COMPRESS, MD_INCR(ctx));
                                              ^
sha-padlock.c:81:46: error: 'struct sha1_ctx' has no member named 'count_low'
  MD_UPDATE(ctx, length, data, SHA1_COMPRESS, MD_INCR(ctx));
                                              ^
sha-padlock.c:81:46: error: 'struct sha1_ctx' has no member named 'count_high'
  MD_UPDATE(ctx, length, data, SHA1_COMPRESS, MD_INCR(ctx));
                                              ^
sha-padlock.c:81:46: error: 'struct sha1_ctx' has no member named 'count_low'
  MD_UPDATE(ctx, length, data, SHA1_COMPRESS, MD_INCR(ctx));
                                              ^
sha-padlock.c: In function 'padlock_sha256_update':
sha-padlock.c:88:48: error: 'struct sha256_ctx' has no member named 'count_high'
  MD_UPDATE(ctx, length, data, SHA256_COMPRESS, MD_INCR(ctx));
                                                ^
sha-padlock.c:88:48: error: 'struct sha256_ctx' has no member named 'count_low'
  MD_UPDATE(ctx, length, data, SHA256_COMPRESS, MD_INCR(ctx));
                                                ^
sha-padlock.c:88:48: error: 'struct sha256_ctx' has no member named 'count_high'
  MD_UPDATE(ctx, length, data, SHA256_COMPRESS, MD_INCR(ctx));
                                                ^
sha-padlock.c:88:48: error: 'struct sha256_ctx' has no member named 'count_low'
  MD_UPDATE(ctx, length, data, SHA256_COMPRESS, MD_INCR(ctx));
                                                ^
sha-padlock.c: In function 'padlock_sha1_digest':
sha-padlock.c:143:13: error: 'struct sha1_ctx' has no member named 'count_high'
  high = (ctx-&gt;count_high &lt;&lt; 9) | (ctx-&gt;count_low &gt;&gt; 23);
             ^
sha-padlock.c:143:38: error: 'struct sha1_ctx' has no member named 'count_low'
  high = (ctx-&gt;count_high &lt;&lt; 9) | (ctx-&gt;count_low &gt;&gt; 23);
                                      ^
sha-padlock.c:144:12: error: 'struct sha1_ctx' has no member named 'count_low'
  low = (ctx-&gt;count_low &lt;&lt; 9) | (ctx-&gt;index &lt;&lt; 3);
            ^
sha-padlock.c: In function 'padlock_sha256_digest':
sha-padlock.c:165:13: error: 'struct sha256_ctx' has no member named 'count_high'
  high = (ctx-&gt;count_high &lt;&lt; 9) | (ctx-&gt;count_low &gt;&gt; 23);
             ^
sha-padlock.c:165:38: error: 'struct sha256_ctx' has no member named 'count_low'
  high = (ctx-&gt;count_high &lt;&lt; 9) | (ctx-&gt;count_low &gt;&gt; 23);
                                      ^
sha-padlock.c:166:12: error: 'struct sha256_ctx' has no member named 'count_low'
  low = (ctx-&gt;count_low &lt;&lt; 9) | (ctx-&gt;index &lt;&lt; 3);
            ^
Makefile:1528: recipe for target 'sha-padlock.lo' failed
make[5]: *** [sha-padlock.lo] Error 1
make[5]: *** Waiting for unfinished jobs....
aes-padlock.c: In function 'padlock_aes_cipher_setkey':
aes-padlock.c:97:22: error: 'struct aes_ctx' has no member named 'nrounds'
   pce-&gt;ks.rounds = nc.nrounds;
                      ^
Makefile:1528: recipe for target 'aes-padlock.lo' failed
make[5]: *** [aes-padlock.lo] Error 1
aes-gcm-padlock.c: In function 'aes_gcm_cipher_setkey':
aes-gcm-padlock.c:102:23: error: macro &quot;GCM_SET_KEY&quot; passed 5 arguments, but takes just 4
       keysize, userkey);
                       ^
aes-gcm-padlock.c:101:2: error: 'GCM_SET_KEY' undeclared (first use in this function)
  GCM_SET_KEY(ctx, padlock_aes_set_encrypt_key, padlock_aes_encrypt,
  ^
aes-gcm-padlock.c:101:2: note: each undeclared identifier is reported only once for each function it appears in
Makefile:1528: recipe for target 'aes-gcm-padlock.lo' failed
make[5]: *** [aes-gcm-padlock.lo] Error 1
make[5]: Leaving directory '/home/ossy/WebKit/WebKitBuild/DependenciesEFL/Source/gnutls-3.3.0/lib/accelerated/x86'
Makefile:1397: recipe for target 'all-recursive' failed
make[4]: *** [all-recursive] Error 1</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>