mirror of
https://github.com/brunoos/luasec.git
synced 2024-11-08 06:28:26 +01:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
LuaSec 1.2.0
|
|
------------
|
|
|
|
* OpenSSL options:
|
|
|
|
By default, this version includes options for OpenSSL 3.0.0 beta2
|
|
|
|
If you need to generate the options for a different version of OpenSSL:
|
|
|
|
$ cd src
|
|
$ lua options.lua -g /usr/include/openssl/ssl.h > options.c
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
* On Linux, BSD, and Mac OS X:
|
|
|
|
- Edit 'Makefile'
|
|
* Inform the path to where install the Lua modules (LUAPATH) and binaries
|
|
modules (LUACPATH)
|
|
* If Lua or OpenSSL are not in the default path, set the
|
|
variables INCDIR and LIBDIR.
|
|
* For Mac OS X, set the variable MACOSX_VERSION.
|
|
|
|
- Use 'make <platform>' to compile
|
|
* Platforms: linux, bsd, or macosx
|
|
|
|
- Use 'make install' to install the modules.
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
* On Windows:
|
|
|
|
- Use the Visual C++ project to compile the library.
|
|
|
|
- Copy the 'ssl.lua' file to some place in your LUA_PATH.
|
|
|
|
- Copy the 'ssl.dll' file to some place in your LUA_CPATH.
|
|
|
|
- Create a directory 'ssl' in your LUA_PATH and copy 'https.lua' to it.
|