http://issues.apache.org/SpamAssassin/show_bug.cgi?id=3927
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From [EMAIL PROTECTED] 2006-09-05 14:58 -------
this appears to have been implemented in trunk:
# Windows platforms need some adjustments
if (RUNNING_ON_WINDOWS) {
# Don't build spamd
delete $makefile{EXE_FILES}{'spamd/spamd.raw'};
delete $makefile{MAN1PODS}{'spamd/spamd'};
# building spamc is optional under Win32 because not everyone has compiler
if (!defined $opt{'build_spamc'}) {
$opt{'build_spamc'} = bool(prompt(
"Build spamc.exe (environment must be set up for C compiler)? (y/n)",
'y'));
} else {
$opt{'build_spamc'} = bool($opt{'build_spamc'});
}
if (!$opt{'build_spamc'}) {
delete $makefile{EXE_FILES}{'spamc/spamc.c'};
delete $makefile{MAN1PODS}{'spamc/spamc.pod'};
}
}
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.