Difference between revisions of "OS-SCO-OpenSource"

From KRayWiki
Jump to navigation Jump to search
m (ftp.bulgrien.net to krb-vps.bulgrien.net)
(Add various topics.)
Line 12: Line 12:
  
 
This page primarily indexes local wiki pages that aggregate information relating to attempts to build and deploy free software to the OpenServer 5.0.7 platform.  While these pages will document successes, it is intended to also show issues, workarounds, and even failures to deploy projects to the platform.  
 
This page primarily indexes local wiki pages that aggregate information relating to attempts to build and deploy free software to the OpenServer 5.0.7 platform.  While these pages will document successes, it is intended to also show issues, workarounds, and even failures to deploy projects to the platform.  
 +
 +
== Patch Notes ==
 +
 +
SCO OpenServer patches may use the following:
 +
<div style="background-color: #EEEEEE; border: dashed; border-width: 1px; font-family: courier; margin: 1em 2em; padding: 1ex; white-space: pre;"><nowiki>#if defined(_SCO_DS)
 +
#endif  /* if defined(_SCO_DS) */
 +
 +
#if ! defined(_SCO_DS)
 +
#endif  /* if ! defined(_SCO_DS) */
 +
 +
#ifdef _SCO_DS
 +
#endif  /* ifdef _SCO_DS */
 +
 +
#ifndef _SCO_DS
 +
#endif  /* ifndef _SCO_DS */
 +
</nowiki></div>
  
 
== FTP Downloads ==
 
== FTP Downloads ==
Line 19: Line 35:
 
* [ftp://krb-vps.bulgrien.net/pub/sco/openserver-5.0.7/ krb-vps.bulgrien.net]
 
* [ftp://krb-vps.bulgrien.net/pub/sco/openserver-5.0.7/ krb-vps.bulgrien.net]
 
*: The server allows anonymous connections.
 
*: The server allows anonymous connections.
 +
 +
== Porting Resources ==
 +
 +
* [http://unixwiz.net/techtips/unixware-build.html Building software on SCO UnixWare/OpenUnix/OpenServer]
 +
* [http://www.sco.com/skunkware/sgmldocs/scoworld-one/t1.html SCO, Skunkware, and the Open Source Movement]
 +
* [http://www.sco.com/2007tecforum/breakouts/JWOLFE_DevSys_Tools_Tips.ppt JWOLFE_DevSys_Tools_Tips.ppt] @ sco.com
 +
* [http://www.sco.com/skunkware/sgmldocs/scoworld-two/t1.html Porting Open Source Software to SCO]
 +
* [https://docs.oracle.com/cd/E17952_01/mysql-5.0-en/sco.html Building mysql / FSU pthreads]
 +
* [https://github.com/saprykin/plibsys/wiki/SCO-OpenServer-5 Building GCC / FSU pthreads]
 +
* [http://osr507doc.sco.com/en/topics/CONTENTS.html Developer Topics] @ sco.com
 +
* [http://www.zenez.com/cgi-bin/scoprogfaq/faq SCO Programmer's FAQ]
 +
* [http://osr600doc.sco.com/en/manCDMT/CONTENTS.html CDMT man] @ sco.com
 +
* [http://www.sco.com/skunkware/links.html Links] @ sco.com
  
 
== [[OS-SCO-OpenSource-DevelopmentSystem|Development System]] ==
 
== [[OS-SCO-OpenSource-DevelopmentSystem|Development System]] ==
Line 82: Line 111:
 
* [[OS-SCO-OpenSource-zlib|zlib]] [ftp://ftp.bulgrien.net/pub/sco/openserver-5.0.7/zlib 1.2.11]
 
* [[OS-SCO-OpenSource-zlib|zlib]] [ftp://ftp.bulgrien.net/pub/sco/openserver-5.0.7/zlib 1.2.11]
 
*: Used to build [[OS-SCO-OpenSource-openssl|openssl]] and [[OS-SCO-OpenSource-curl|curl]].
 
*: Used to build [[OS-SCO-OpenSource-openssl|openssl]] and [[OS-SCO-OpenSource-curl|curl]].
 +
* [[OS-SCO-OpenSource-libxml2|libxml2]] [ftp://ftp.bulgrien.net/pub/sco/openserver-5.0.7/libxml2 2.7.8]
 +
*: Used to build [[OS-SCO-OpenSource-php|php]].
 +
* [[OS-SCO-OpenSource-sqlite3|sqlite3]] [ftp://ftp.bulgrien.net/pub/sco/openserver-5.0.7/sqlite3 3.33.0]
 +
*: Used to build [[OS-SCO-OpenSource-php|php]].
  
 
</blockquote>
 
</blockquote>

Revision as of 20:18, 5 January 2021

Index to SCO OpenServer 5.0.7 topics related to the use of open source projects

See Also: 
OS-SCO-OpenSource-KnownIssues
OS-SCO


Introduction

Topic Goals

This page primarily indexes local wiki pages that aggregate information relating to attempts to build and deploy free software to the OpenServer 5.0.7 platform. While these pages will document successes, it is intended to also show issues, workarounds, and even failures to deploy projects to the platform.

Patch Notes

SCO OpenServer patches may use the following:

#if defined(_SCO_DS) #endif /* if defined(_SCO_DS) */ #if ! defined(_SCO_DS) #endif /* if ! defined(_SCO_DS) */ #ifdef _SCO_DS #endif /* ifdef _SCO_DS */ #ifndef _SCO_DS #endif /* ifndef _SCO_DS */

FTP Downloads

A corresponding FTP site related to these pages exists to grant access to resources related to the free software project experiences documented on this wiki.

Porting Resources

Development System

The Development System sub-topic attempts to describe the environment used in conjunction with free and open source projects built and deployed to the SCO OpenServer 5.0.7 operating environment.

  • User Environment
  • Installed Packages

GNU

Built and used as part of an updated build system for other free and open source software.

gnulib has facilitated build of some other open source software packages.

Miscellaneous

  • curl 7.63.0
    Built to resolve security vulnerabilities.
    Earlier versions are known to build.
  • cvs 1.11.23
    The "newest" SCO-built alternatives are 1.11.2 and 1.11.6 as provided in their GNU Development Tools packages.
  • groff 1.20
    Built to avoid "Text processing tools (nroff/groff, eqn, tbl) not installed on system" errors when using the `man` command.
    A viable alternative is to install older SCO-built 1.18, or 1.19 versions via their GNU Development Tools packages.
  • libssh2 1.1, 1.2.4, and 1.8.0 built
    Used as a curl dependency.
  • openssh 7.7p1
    Built to address ssh vulnerabilities and gain improved ssh-agent functionality.
  • openssl 1.0.2q
    1.0.2o is also known to build; used as a curl dependency.
  • popt 1.13
  • psutils 1.17
    Built as a groff 1.20 dependency
  • python 2.5.6
    Built to explore building more recent samba revisions as the 4.x build system requires python.
  • samba
    Only smbclient 3.6.26 was built (not all of samba)
    Built to allow interaction with Windows servers that have the insecure SMB1 protocol disabled.
  • sudo 1.6.9p23
    Built to allow limited use of per-command elevated privileges with less complication than `su -c` requires.
  • texinfo 6.2
    Built as a groff 1.20 dependency
  • xz 5.0.8
    Built to allow unpacking source archives needed to build updated open source software (i.e. grep).
  • zlib 1.2.11
    Used to build openssl and curl.
  • libxml2 2.7.8
    Used to build php.
  • sqlite3 3.33.0
    Used to build php.