From 7f15ff53d82a1991d6732d2303eb652b1cf7e023 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Mon, 13 Jul 2015 17:03:20 -0400 Subject: [PATCH] Rename crypto/{bn,evp}/asn1.c. gyp doesn't allow two files to share the same name to avoid bugs in OS X libtool, so asn1.c's need to all get a prefix. Change-Id: I3593597912c49dd02655cae329fb253ed4f6f56d Reviewed-on: https://boringssl-review.googlesource.com/5431 Reviewed-by: Adam Langley --- crypto/bn/CMakeLists.txt | 2 +- crypto/bn/{asn1.c => bn_asn1.c} | 0 crypto/evp/CMakeLists.txt | 2 +- crypto/evp/{asn1.c => evp_asn1.c} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename crypto/bn/{asn1.c => bn_asn1.c} (100%) rename crypto/evp/{asn1.c => evp_asn1.c} (100%) diff --git a/crypto/bn/CMakeLists.txt b/crypto/bn/CMakeLists.txt index fa6d2074..63029cf7 100644 --- a/crypto/bn/CMakeLists.txt +++ b/crypto/bn/CMakeLists.txt @@ -38,8 +38,8 @@ add_library( add.c asm/x86_64-gcc.c - asn1.c bn.c + bn_asn1.c cmp.c convert.c ctx.c diff --git a/crypto/bn/asn1.c b/crypto/bn/bn_asn1.c similarity index 100% rename from crypto/bn/asn1.c rename to crypto/bn/bn_asn1.c diff --git a/crypto/evp/CMakeLists.txt b/crypto/evp/CMakeLists.txt index 061f9351..5c22a8a3 100644 --- a/crypto/evp/CMakeLists.txt +++ b/crypto/evp/CMakeLists.txt @@ -6,9 +6,9 @@ add_library( OBJECT algorithm.c - asn1.c digestsign.c evp.c + evp_asn1.c evp_ctx.c p_dsa_asn1.c p_ec.c diff --git a/crypto/evp/asn1.c b/crypto/evp/evp_asn1.c similarity index 100% rename from crypto/evp/asn1.c rename to crypto/evp/evp_asn1.c