1--- ./ext/digest/sha1/extconf.rb.orig	2012-11-26 16:58:52.000000000 -0800
2+++ ./ext/digest/sha1/extconf.rb	2013-02-25 12:08:37.000000000 -0800
3@@ -17,7 +17,7 @@ if !with_config("bundled-sha1") &&
4     have_library("crypto") && OpenSSL.check_func("SHA1_Transform", "openssl/sha.h")
5   $objs << "sha1ossl.#{$OBJEXT}"
6 else
7-  $objs << "sha1.#{$OBJEXT}"
8+  $objs << "sha1cc.#{$OBJEXT}"
9 end
10 
11 have_header("sys/cdefs.h")
12
13--- ext/digest/sha1/sha1init.c~	2012-02-25 12:37:12.000000000 -0800
14+++ ext/digest/sha1/sha1init.c	2013-02-27 23:12:52.000000000 -0800
15@@ -5,7 +5,7 @@
16 #if defined(HAVE_OPENSSL_SHA_H)
17 #include "sha1ossl.h"
18 #else
19-#include "sha1.h"
20+#include "sha1cc.h"
21 #endif
22 
23 static const rb_digest_metadata_t sha1 = {
24