Additions:
**[[WatcomIcons Open Watcom Icons]]**
Deletions:
**[[WatcomIcons Open Watcom Icons]]
Additions:
**[[WatcomIcons Open Watcom Icons]]
Additions:
**[[http://www.openwatcom.org/index.php/Build_Servers Open Watcom Build Servers]]**
Deletions:
**[[http://owbuilder.ecet.vtc.edu/ Open Watcom Build Server]]**
Additions:
>>**[[www.openwatcom.org Open Watcom Website]]**
**[[http://www.openwatcom.org/index.php/Style_Guide OW Coding Style Guide]]**
**[[http://owbuilder.ecet.vtc.edu/ Open Watcom Build Server]]**
**[[http://perforce.openwatcom.org:4000/@md=d&cd=//&c=wpn@//?ac=43&mx=50 Recent changes submitted]]**
**Example [[SetVar setvars.cmd]] file**
**MiscOWLinks:**
**[[http://www.cubic.org/~submissive/sourcerer/make.htm Makefile I]]**
**[[http://www.cubic.org/~submissive/sourcerer/make2.htm Makefile II]]**
**[[http://www.lesstif.org/~amai/os2/html/porting.html The un*x to OS/2-EMX Porting FAQ]]**
**[[http://posix2.sourceforge.net/ The POSIX/2 Project]]**
**[[http://publib.boulder.ibm.com/cgi-bin/bookmgr IBM Library Server Library]]**
**Aquarius Software [[http://www.TheBestOS.com/ Workframe V3]] Integration project.**
**[[GettingStarted Getting started with OW]] by Gordon Snider**
**Discussion Groups:**
**Groups on Google:**
Deletions:
>>[[www.openwatcom.org Open Watcom Website]]
[[http://owbuilder.ecet.vtc.edu/ Open Watcom Build Server]]
[[http://perforce.openwatcom.org:4000/@md=d&cd=//&c=wpn@//?ac=43&mx=50 Recent changes submitted]]
Example [[SetVar setvars.cmd]] file
MiscOWLinks
[[http://www.cubic.org/~submissive/sourcerer/make.htm Makefile I]]
[[http://www.cubic.org/~submissive/sourcerer/make2.htm Makefile II]]
[[http://www.lesstif.org/~amai/os2/html/porting.html The un*x to OS/2-EMX Porting FAQ]]
[[http://posix2.sourceforge.net/ The POSIX/2 Project]]
[[http://publib.boulder.ibm.com/cgi-bin/bookmgr IBM Library Server Library]]
Aquarius Software [[http://www.TheBestOS.com/ Workframe V3]] Integration project.
[[GettingStarted Getting started with OW]] by Gordon Snider
Groups on Google:
Additions:
**19 March 2008:**
Japheth's side project: Wasm v1.7j is a fork of Open Watcom's WASM. The goal is to have a MASM v6 compatible open source version available.
[[http://www.japheth.de/wasm.html http://www.japheth.de/wasm.html ]]
Steven's wrc beta, works more like IBM rc:
[[http://svn.netlabs.org/fm2/ticket/131 http://svn.netlabs.org/fm2/ticket/131]]
A better version included in the 1.8 tree? Not sure.
**Old stuff:**
Additions:
{{image class="center" alt="ow image" title="Open Watcom" url="http://www.mgreene.org/graphics/owheader.png"}}
Deletions:
{{image class="center" alt="ow image" title="Open Watcom" url="images/owheader.png"}}
Additions:
Example [[SetVar setvars.cmd]] file
Additions:
[[http://publib.boulder.ibm.com/cgi-bin/bookmgr IBM Library Server Library]]
Additions:
[[http://posix2.sourceforge.net/ The POSIX/2 Project]]
Additions:
[[http://www.lesstif.org/~amai/os2/html/porting.html The un*x to OS/2-EMX Porting FAQ]]
Additions:
[[http://perforce.openwatcom.org:4000/@md=d&cd=//&c=wpn@//?ac=43&mx=50 Recent changes submitted]]
Additions:
[[OWOPipe _popen]]
Additions:
**01 April 07**
[[OWPipe _pipe]]
Additions:
""OS/2 Toolkit Programming Books, OS/2 DDK Programming Books, and IBM Visual Age C/C++ Programming Books they are available on the ""[[http://www.warpspeed.com.au/book/books.htm WarpSpeed]] site in HTML format.
Aquarius Software [[http://www.TheBestOS.com/ Workframe V3]] Integration project.
Additions:
[[http://www.cubic.org/~submissive/sourcerer/make.htm Makefile I]]
[[http://www.cubic.org/~submissive/sourcerer/make2.htm Makefile II]]
[[GettingStarted Getting started with OW]] by Gordon Snider
Deletions:
[[GettingStarted Getting started with OW]]
Additions:
[[GettingStarted Getting started with OW]]
Additions:
News server: news.openwatcom.org
Groups on Google:
[[http://groups-beta.google.com/group/openwatcom.users.c_cpp openwatcom.users.c_cpp]]
[[http://groups-beta.google.com/group/openwatcom.contributors openwatcom.contributors]]
[[http://groups-beta.google.com/group/openwatcom.users.fortran openwatcom.users.fortran]]
Additions:
MiscOWLinks
Additions:
I ran into a problem with getopt where OSs other than those defined ""__UNIX__"" allow an alternate option character "/". This is in addition to the normal or POSIX option character " - ". Here is where this is set (getopt.c):
""#ifdef __UNIX__""
""char __altoptchar = '-';""
""char __altoptchar = '/'; // alternate option character""
The solution for non-""__UNIX__"" OSs is to do this:
""extern char __altoptchar;""
""__altoptchar = '-';""
Deletions:
I ran into a problem with getopt where OSs other than those defined __UNIX__ allow an alternate option character "/". This is in addition to the normal or POSIX option character " - ". Here is where this is set (getopt.c):
#ifdef __UNIX__
char __altoptchar = '-';
char __altoptchar = '/'; // alternate option character
The solution for non-__UNIX__ OSs is to do this:
extern char __altoptchar;
__altoptchar = '-';