Forgot to cvs add those.
This commit is contained in:
parent
df1813ff4a
commit
3eae83df73
@ -0,0 +1,32 @@
|
||||
$OpenBSD: patch-archiveopteryx_archiveopteryx_cpp,v 1.1 2016/11/01 09:11:31 landry Exp $
|
||||
|
||||
EGD server ? seriously ?
|
||||
|
||||
--- archiveopteryx/archiveopteryx.cpp.orig Tue Nov 1 00:28:07 2016
|
||||
+++ archiveopteryx/archiveopteryx.cpp Tue Nov 1 00:28:21 2016
|
||||
@@ -215,25 +215,6 @@ int main( int argc, char *argv[] )
|
||||
::log( "allow-plaintext-access is 'never', but use-tls is 'false'",
|
||||
Log::Disaster );
|
||||
|
||||
- // set up an EGD server for openssl
|
||||
- Entropy::setup();
|
||||
- EString egd( root );
|
||||
- if ( !egd.endsWith( "/" ) )
|
||||
- egd.append( "/" );
|
||||
- egd.append( "var/run/egd-pool" );
|
||||
- (void)new Listener< EntropyProvider >( Endpoint( egd, 0 ), "EGD" );
|
||||
- if ( !security ) {
|
||||
- struct stat st;
|
||||
- if ( stat( "/var/run/edg-pool", &st ) < 0 ) {
|
||||
- log( "Security is disabled and /var/run/edg-pool does not exist. "
|
||||
- "Creating it just in case openssl wants to access it." );
|
||||
- (void)new Listener< EntropyProvider >(
|
||||
- Endpoint( "/var/run/edg-pool", 0 ), "EGD(/)" );
|
||||
- }
|
||||
- }
|
||||
- if ( ::chmod( egd.cstr(), 0666 ) < 0 )
|
||||
- log( "Could not grant r/w access to EGD socket", Log::Disaster );
|
||||
-
|
||||
Listener< IMAP >::create(
|
||||
"IMAP", Configuration::toggle( Configuration::UseImap ),
|
||||
Configuration::ImapAddress, Configuration::ImapPort
|
17
mail/archiveopteryx/patches/patch-core_md5_cpp
Normal file
17
mail/archiveopteryx/patches/patch-core_md5_cpp
Normal file
@ -0,0 +1,17 @@
|
||||
$OpenBSD: patch-core_md5_cpp,v 1.1 2016/11/01 09:11:31 landry Exp $
|
||||
core/md5.cpp:152: error: #pragma GCC diagnostic not allowed inside functions
|
||||
--- core/md5.cpp.orig Thu May 1 08:34:58 2014
|
||||
+++ core/md5.cpp Thu May 1 08:35:20 2014
|
||||
@@ -149,12 +149,9 @@ EString MD5::hash()
|
||||
}
|
||||
swapBytes( in, 14 );
|
||||
|
||||
-#pragma GCC diagnostic push
|
||||
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
||||
/* Append length in bits and transform. */
|
||||
((uint32 *)in)[14] = bits[0];
|
||||
((uint32 *)in)[15] = bits[1];
|
||||
-#pragma GCC diagnostic pop
|
||||
transform();
|
||||
swapBytes( (char *)buf, 4 );
|
||||
|
Loading…
Reference in New Issue
Block a user