forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: * Fix serious bug in DNS random code. * Rename symbol HFILTER_HOSTNAME_NOPTR (@AlexeySa) * Fix Hfilter for null text part (@AlexeySa) * Fix rule MISSING_MIMEOLE for IPB forum (@AlexeySa) * Tweak default RBL module config for brevity (@fatalbanana) * Fix nameservers setup. * Fix overrides for a metric. (#33) * Fix memory leak in fuzzy_add command. * Debianization (by @dottedmag). * Rework resolver library. * Rework LRU hash logic. * Fix users in debian package (by @dottedmag). * Rework bloom hash library to use XXHash. * Remove judy and use glib hash tables from fuzzy_storage.
- Loading branch information
wiedi
committed
May 14, 2014
1 parent
0533e7b
commit d203f56
Showing
3 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
$NetBSD: distinfo,v 1.1 2014/02/07 14:39:19 wiedi Exp $ | ||
$NetBSD: distinfo,v 1.2 2014/05/14 16:07:06 wiedi Exp $ | ||
|
||
SHA1 (rspamd-0.6.8.tar.gz) = 23c0fcfb7adad9449d1c9aea06b180c166cd80e1 | ||
RMD160 (rspamd-0.6.8.tar.gz) = 42a76efe9a6b788463a81c18b41a251c42ba5723 | ||
Size (rspamd-0.6.8.tar.gz) = 1088445 bytes | ||
SHA1 (rspamd-0.6.9.tar.gz) = aed555b278509c99020624f38d2a77c38a3fa0f6 | ||
RMD160 (rspamd-0.6.9.tar.gz) = 233d75efd3af370e3b504d9f13f7f282482a0cbe | ||
Size (rspamd-0.6.9.tar.gz) = 1088703 bytes | ||
SHA1 (patch-CMakeLists.txt) = e6d86ceea7351276937c8e6bc25d1497f3ad06da |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$NetBSD: patch-CMakeLists.txt,v 1.1 2014/05/14 16:07:06 wiedi Exp $ | ||
Help CMake find Lua | ||
|
||
--- CMakeLists.txt.orig 2014-05-14 14:26:36.954076768 +0000 | ||
+++ CMakeLists.txt | ||
@@ -170,6 +170,7 @@ MACRO(FindLua _major _minor) | ||
$ENV{LUA_DIR} | ||
PATH_SUFFIXES "include/lua${_major}${_minor}" | ||
"include/lua${_major}.${_minor}" | ||
+ "include/lua-${_major}.${_minor}" | ||
include/lua include | ||
PATHS | ||
/usr/local |