* Fixed missing resources for the mimeset build.

* Fixed wrong resources in unzip (missing app flags made it a normal app).
* There is no need to run the application in unzip's main().


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17815 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-06-13 11:36:53 +00:00
parent bb2242b422
commit 100e579871
3 changed files with 8 additions and 11 deletions

View File

@ -56,6 +56,8 @@ StdBinCommands
: libtermcap.a
;
AddResources mimeset : mimeset.rdef ;
# standard commands that need libbe.so
StdBinCommands
alert.cpp
@ -85,8 +87,6 @@ StdBinCommands
# yes.cpp
: be ;
AddResources mimeset : mimeset.rdef ;
# standard commands that need libbe.so, libstdc++.so
StdBinCommands
copyattr.cpp

View File

@ -35,10 +35,5 @@ int main( int argc, char **argv )
{
BApplication app( unzip_signature );
int retval = main_stub( argc, argv );
app.PostMessage( B_QUIT_REQUESTED );
app.Run();
return retval;
return main_stub( argc, argv );
}

View File

@ -1,5 +1,8 @@
resource app_version
{
resource app_signature "application/x-vnd.Info-ZIP.UnZip";
resource app_flags B_MULTIPLE_LAUNCH | B_BACKGROUND_APP;
resource app_version {
major = 5,
middle = 5,
minor = 0,
@ -8,4 +11,3 @@ resource app_version
short_info = "5.50",
long_info = "5.50 ©2002 Info-ZIP"
};