I am looking to enhance SWISH-E ( http://www.swish-e.org )to support
Cygwin.  It builds and runs just fine, but internally the code takes a
configuration parameter and if it is a shell-command, converts all of
the "/" characters to "\".

For example, if IndexDir is set to "c:/swish-e/bin/spider.pl", then
this gets converted to "c:\swish-e\bin\spider.pl" and gets passed to
popen().

This works well for running within the Win32 environment, but causes
problems within Cygwin (Cannot execute "c:swish-ebinspider.pl").

Currently the code simply has:

#ifdef _WIN32
    make_windows_path( cmd );
#endif

and make_windows_path() blindly replaces '/' for '\'.

I'd like to have one binary support both Cygwin and native Win32
environments.  Suggestions on the "cleanest" way?

I figure that I can either:
 - detect at runtime whether we're in Cygwin (how?)
 - use an environment variable to determine the appropriate path
separator (is there one?)

Thanks in advance,
greg_fenton.


=====
Greg Fenton
[EMAIL PROTECTED]

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Reply via email to