Check-in [7d63c7af04]
Overview
Comment:define symbol WINDOWS when TLS uses BSAFE headers for Win/NT
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7d63c7af048373879aeaf8a663909de53ee50830
User & Date: aborr on 2000-05-18 00:31:15
Other Links: manifest | tags
Context
2000-05-18
00:38
changed sslc.lib to sslc32.lib for Win/NT BSAFE build check-in: c94d10f128 user: aborr tags: trunk
00:31
define symbol WINDOWS when TLS uses BSAFE headers for Win/NT check-in: 7d63c7af04 user: aborr tags: trunk
2000-05-12
04:46
backed out name change for debug lib check-in: 587d7f7965 user: aborr tags: trunk
Changes
84
85
86
87
88
89
90

91
92
93
94
95
96
97
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98







+







# This step isn't necessary if we're using OpenSSL.
#--------------------------------------------------------------------

if test -z "${OPENSSL}"; then
    case "`uname -s`" in
	*win32* | *WIN32* | *CYGWIN_NT*|*CYGWIN_98*|*CYGWIN_95*)
	    PLATFORM=WIN32
	    AC_DEFINE(WINDOWS)
	    ;;
	*SunOS*)
	    PLATFORM=SOLARIS
	    ;;
	*)
	    PLATFORM=LINUX
	    ;;