You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openoffice.apache.org by Yuri Dario <mc...@mclink.it> on 2012/07/05 18:28:11 UTC

scp2 adding quickstart binary for OS/2

Hi,

I need to add quickstart.exe to the OS/2 installation. Is it correct 
to use the following code?

Index: source/ooo/common_brand.scp
===================================================================
--- source/ooo/common_brand.scp	(revision 1354900)
+++ source/ooo/common_brand.scp	(working copy)
@@ -48,6 +48,7 @@
              gid_Brand_File_Bin_Crashreport_Script,
              gid_Brand_File_Bin_Crashreport_Com,
              gid_Brand_File_Bin_Python,
+             gid_Brand_File_Bin_Quickstart_Os2,
              gid_Brand_File_Bin_Soffice,
              gid_Brand_File_Bin_Soffice_Bin,
              gid_Brand_File_Bin_Soffice_Bin_Manifest,
@@ -1324,3 +1325,12 @@
     Styles = (PACKED);
 End
 #endif
+
+#ifdef OS2
+File gid_Brand_File_Bin_Quickstart_Os2
+    TXT_FILE_BODY;
+    Styles = (PACKED);
+    Dir = gid_Brand_Dir_Program;
+    Name = "quickstart.exe";
+End
+#endif


I see references to windows quickstart.exe, but it seems to be added 
in some other way I don't understand.

thanks,

-- 
Bye,

	Yuri Dario

/*
 * OS/2 open source software
 * http://web.os2power.com/yuri
 * http://www.netlabs.org
*/



Re: scp2 adding quickstart binary for OS/2

Posted by Yuri Dario <mc...@mclink.it>.
Hi Andre,

> main/scp2/source/quickstart/file_quickstart.scp
> main/scp2/source/quickstart/makefile.mk for OS/2.

not enough, probably the installer scripts does something more to add 
them.

thanks

-- 
Bye,

	Yuri Dario

/*
 * OS/2 open source software
 * http://web.os2power.com/yuri
 * http://www.netlabs.org
*/



Re: scp2 adding quickstart binary for OS/2

Posted by Andre Fischer <af...@a-w-f.de>.
On 05.07.2012 18:28, Yuri Dario wrote:
> Hi,
>
> I need to add quickstart.exe to the OS/2 installation. Is it correct
> to use the following code?

I am not an expert but here is what I would try to do:

- Add a file like (or use directly) 
main/scp2/source/quickstart/file_quickstart.scp

- Extend the guard in the makefile 
main/scp2/source/quickstart/makefile.mk for OS/2.

- In that same makefile check if the registry item is applicable to OS/2

- Hope for the best.


Regards,
Andre

>
> Index: source/ooo/common_brand.scp
> ===================================================================
> --- source/ooo/common_brand.scp	(revision 1354900)
> +++ source/ooo/common_brand.scp	(working copy)
> @@ -48,6 +48,7 @@
>                gid_Brand_File_Bin_Crashreport_Script,
>                gid_Brand_File_Bin_Crashreport_Com,
>                gid_Brand_File_Bin_Python,
> +             gid_Brand_File_Bin_Quickstart_Os2,
>                gid_Brand_File_Bin_Soffice,
>                gid_Brand_File_Bin_Soffice_Bin,
>                gid_Brand_File_Bin_Soffice_Bin_Manifest,
> @@ -1324,3 +1325,12 @@
>       Styles = (PACKED);
>   End
>   #endif
> +
> +#ifdef OS2
> +File gid_Brand_File_Bin_Quickstart_Os2
> +    TXT_FILE_BODY;
> +    Styles = (PACKED);
> +    Dir = gid_Brand_Dir_Program;
> +    Name = "quickstart.exe";
> +End
> +#endif
>
>
> I see references to windows quickstart.exe, but it seems to be added
> in some other way I don't understand.
>
> thanks,
>