4bca73e601
== [release-2-0-1] 2.0.1: 2014-01-24 A bug fix release of 2.0.0. === milter manager ==== Improvements * Support SIGUSR1 signal to reopen log file ==== Fixes * Drop functionality to report stack trace on crash. Because it is unsafe for all users. [GitHub #38] === milter-core ==== Improvements * Support log output by MILTER_LOG_PATH environment variable. === milter-client ==== Improvements * Support --log-path option. === Ruby milter ==== Improvements * Support --log-path option. * Support SIGUSR1 signal to reopen log file. === Package ==== Improvements * Drop Ubuntu Lucid (10.04) support. * Add Ubuntu Saucy (13.10) support. * deb: Support Ruby 2.0.0 detection on Debian. * rpm: Update Ruby1.9.3 package for CentOS6 to Ruby1.9.3-p484. * Remove auto-generated files from distribution archive. [Reported by Youhei SASAKI][milter-manager-users-ja:00225] === Document ==== Improvements * Update to the latest milter-greylist RPM. [Reported by ishizaka tadanori][milter-manager-users-ja:00220] * Improve English version reference manual. [GitHub #17] === Thanks * Youhei SASAKI * ishizaka tadanori
17 lines
654 B
Text
17 lines
654 B
Text
$NetBSD: patch-configure,v 1.2 2014/01/24 11:29:30 obache Exp $
|
|
|
|
* rbconfig_vendorarchhdr dir may not be defined even if rbconfig_hdrdir exists
|
|
|
|
--- configure.orig 2014-01-23 02:36:54.000000000 +0000
|
|
+++ configure
|
|
@@ -13989,6 +13989,10 @@ if test "$ruby_available" = "yes"; then
|
|
fi
|
|
if test -d "$rbconfig_vendorarchhdrdir"; then
|
|
RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_vendorarchhdrdir"
|
|
+ else
|
|
+ if test "$rbconfig_vendorarchdir" != ""; then
|
|
+ RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_vendorarchdir"
|
|
+ fi
|
|
fi
|
|
if test -d "$rbconfig_rubyarchhdrdir"; then
|
|
RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_rubyarchhdrdir"
|