re. the CVS problem in dxsamples/stereo - thanks; I've fixed it.
re. the problem in dx.c - that code shouldn't be being used except on
Windoze. On Unix/Linux, a csh script should be being used. There should
be a test at the top -
#if defined(DXD_WIN)
#include <stdio.h>
main(){fprintf(stderr, "dx.c shouldn't be being used\n");}
#else
....
with a matching #endif at the end.
Greg
Matthew Bettencourt <[EMAIL PROTECTED]>@opendx.watson.ibm.com on 07/04/2001
04:22:12 PM
Please respond to [email protected]
Sent by: [EMAIL PROTECTED]
To: [email protected]
cc:
Subject: [opendx-dev] cvs version
Just 2 comments, first, the cvs ddir for dxsamples is messed up.
{server 117} cvs -z5 -d :pserver:[EMAIL PROTECTED]:/src/master
co dxsamples
...
U dxsamples/scripts/interop
U dxsamples/scripts/scriptexample
cvs server: Updating dxsamples/stereo
cvs server: failed to create lock directory in repository
`/src/master/dxsamples/stereo': Permission denied
cvs server: failed to obtain dir lock in repository
`/src/master/dxsamples/stereo'
Second, the dx.c code in the current cvs version is now windows only.
There should be #ifdefs around the code that checks to see what version of
exceed you are using. If you try to compile it you get
result = _spawnlp(_P_NOWAIT, "Exceed", "Exceed",
NULL);
_P_NOWAIT undefined....
Or maybe this sould be commented out of the makefile becuase it seems to
be for windoze only anyway
Matt