Put halmp.dll on CD

svn path=/trunk/; revision=16810
This commit is contained in:
Casper Hornstrup 2005-07-27 19:10:57 +00:00
parent dc0201cafa
commit 24f28bb15b
11 changed files with 96 additions and 11 deletions

View file

@ -237,6 +237,9 @@ MingwModuleHandler::InstanciateHandler (
case RpcClient:
handler = new MingwRpcClientModuleHandler ( module );
break;
case Alias:
handler = new MingwAliasModuleHandler ( module );
break;
default:
throw UnknownModuleTypeException (
module.node.location,
@ -2877,12 +2880,13 @@ MingwLiveIsoModuleHandler::OutputModuleCopyCommands ( string& livecdDirectory,
continue;
if ( m.installName.length () > 0 )
{
const Module& aliasedModule = backend->GetAliasedModuleOrModule ( m );
string sourceFilename = MingwModuleHandler::PassThruCacheDirectory (
NormalizeFilename ( m.GetPath () ),
NormalizeFilename ( aliasedModule.GetPath () ),
backend->outputDirectory );
OutputCopyCommand ( sourceFilename,
m.installName,
livecdDirectory + SSEP + reactosDirectory + SSEP + m.installBase );
m.installName,
livecdDirectory + SSEP + reactosDirectory + SSEP + m.installBase );
}
}
}
@ -3057,6 +3061,7 @@ MingwRpcServerModuleHandler::Process ()
GenerateRules ();
}
MingwRpcClientModuleHandler::MingwRpcClientModuleHandler (
const Module& module_ )
@ -3069,3 +3074,16 @@ MingwRpcClientModuleHandler::Process ()
{
GenerateRules ();
}
MingwAliasModuleHandler::MingwAliasModuleHandler (
const Module& module_ )
: MingwModuleHandler ( module_ )
{
}
void
MingwAliasModuleHandler::Process ()
{
}