* 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
+2 -2
View File
@@ -56,6 +56,8 @@ StdBinCommands
: libtermcap.a : libtermcap.a
; ;
AddResources mimeset : mimeset.rdef ;
# standard commands that need libbe.so # standard commands that need libbe.so
StdBinCommands StdBinCommands
alert.cpp alert.cpp
@@ -85,8 +87,6 @@ StdBinCommands
# yes.cpp # yes.cpp
: be ; : be ;
AddResources mimeset : mimeset.rdef ;
# standard commands that need libbe.so, libstdc++.so # standard commands that need libbe.so, libstdc++.so
StdBinCommands StdBinCommands
copyattr.cpp copyattr.cpp
+1 -6
View File
@@ -35,10 +35,5 @@ int main( int argc, char **argv )
{ {
BApplication app( unzip_signature ); BApplication app( unzip_signature );
int retval = main_stub( argc, argv ); return main_stub( argc, argv );
app.PostMessage( B_QUIT_REQUESTED );
app.Run();
return retval;
} }
+5 -3
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, major = 5,
middle = 5, middle = 5,
minor = 0, minor = 0,
@@ -8,4 +11,3 @@ resource app_version
short_info = "5.50", short_info = "5.50",
long_info = "5.50 ©2002 Info-ZIP" long_info = "5.50 ©2002 Info-ZIP"
}; };