Skip to content

Commit

Permalink
Bug 1571316 - Fix undefined PORT_Assert reference in ARMv7 make build…
Browse files Browse the repository at this point in the history
…s r=jcj

The recent x25519 update added some assertions in `curve25519_32.c`. For these, we need to include a new header file in order to support Makefile builds on armv7.

Differential Revision: https://phabricator.services.mozilla.com/D40752

--HG--
extra : moz-landing-system : lando
  • Loading branch information
Kevin Jacobs committed Aug 6, 2019
1 parent 0f2995e commit f7142db
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/freebl/ecl/curve25519_32.c
Expand Up @@ -29,6 +29,10 @@
* 1. Convert custom integer types to stdint.h types
*/

#ifdef FREEBL_NO_DEPEND
#include "../stubs.h"
#endif

#include "ecl-priv.h"

/* fe means field element. Here the field is \Z/(2^255-19). An element t,
Expand Down

0 comments on commit f7142db

Please sign in to comment.