aboutsummaryrefslogtreecommitdiffstats
path: root/extconf.rb
blob: 092f40bba6af5eab4e27667bc0c6ff7a7f267466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
=begin
$Id$
'OpenSSL for Ruby' project
Copyright (C) 2001 Michal Rokos <m.rokos@sh.cvut.cz>
All rights reserved.

This program is licenced under the same licence as Ruby.
(See the file 'LICENCE'.)
=end

require "mkmf"

CRYPTOLIB="crypto"
SSLLIB="ssl"

dir_config("openssl")

have_library(CRYPTOLIB, nil)
have_library(SSLLIB, "SSLv23_method")

#if have_header("openssl/ssl.h")
#	if have_library(CRYPTOLIB, "SSLv23_method")
		create_makefile("openssl")
#	end
#end