Skip to content

Commit

Permalink
include sys/types.h for scalar_4x64
Browse files Browse the repository at this point in the history
  • Loading branch information
ERussel committed Oct 16, 2024
1 parent 8f80d5d commit 60e7d0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions secp256k1.c.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'secp256k1.c'
spec.version = '0.1.2'
spec.version = '0.1.3'
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.10"
spec.tvos.deployment_target = "9.0"
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.summary = 'secp256k1 module for web3swift'
spec.homepage = 'https://github.com/bankex/web3swift'
spec.author = 'Bankex Foundation'
spec.source = { :git => 'https://github.com/v57/secp256k1.c.git', :tag => String(spec.version) }
spec.source = { :git => 'https://github.com/novasamatech/secp256k1.c.git', :tag => String(spec.version) }
spec.pod_target_xcconfig = {
'OTHER_CFLAGS' => '-pedantic -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wstrict-prototypes -Wno-shorten-64-to-32 -Wno-conditional-uninitialized -Wno-unused-function -Wno-long-long -Wno-overlength-strings -O3',
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/secp256k1"'
Expand Down
2 changes: 2 additions & 0 deletions secp256k1/scalar_4x64_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
**********************************************************************/

#include <sys/types.h>

#ifndef SECP256K1_SCALAR_REPR_IMPL_H
#define SECP256K1_SCALAR_REPR_IMPL_H

Expand Down

0 comments on commit 60e7d0d

Please sign in to comment.