* Makefile.in (cygcheck.exe): Make a -mno-cygwin program.

* cygrun.c (main): Export CYGWIN=ntsec unless otherwise set.
* shared.cc (shared_name): Only add build date to shared name when
*testing*.
This commit is contained in:
Christopher Faylor
2002-08-26 04:30:11 +00:00
parent 9d89f63486
commit 7200557403
4 changed files with 44 additions and 18 deletions

View File

@@ -38,7 +38,7 @@ shared_name (const char *str, int num)
extern bool _cygwin_testing;
__small_sprintf (buf, "%s.%s.%d", cygwin_version.shared_id, str, num);
if (!_cygwin_testing)
if (_cygwin_testing)
strcat (buf, cygwin_version.dll_build_date);
return buf;
}