summaryrefslogtreecommitdiff
path: root/debian/patches/abort_abort_abort.patch
blob: 2afdac4c088b32ec728784fc14c78645ad20756c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Peter Jones <pjones@redhat.com>
Subject: define abort to avoid an unnecessary reloc.

---
 Cryptlib/Include/OpenSslSupport.h |    1 +
 1 file changed, 1 insertion(+)

Index: b/Cryptlib/Include/OpenSslSupport.h
===================================================================
--- a/Cryptlib/Include/OpenSslSupport.h
+++ b/Cryptlib/Include/OpenSslSupport.h
@@ -380,5 +380,6 @@ extern FILE  *stdout;
 #define atoi(nptr)                        AsciiStrDecimalToUintn(nptr)
 #define gettimeofday(tvp,tz)              do { (tvp)->tv_sec = time(NULL); (tvp)->tv_usec = 0; } while (0)
 #define gmtime_r(timer,result)            (result = NULL)
+#define abort()
 
 #endif