* 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:
parent
bb2242b422
commit
100e579871
@ -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
|
||||
|
@ -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 );
|
||||
}
|
||||
|
@ -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"
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user