Asynchronous Internet Server Library https://lowenware.com/aisl/
Go to file
Ilja Kartašov d8fa3f68e5 Add support for generic Makefile variables 2019-04-25 15:33:18 +02:00
doc Documentation and code base update 2019-03-10 21:53:40 +01:00
examples Switch to new coding style 2019-04-19 21:43:02 +02:00
include/aisl Switch to new coding style 2019-04-19 21:43:02 +02:00
src Fix headers closing 2019-04-25 15:00:16 +02:00
.gitignore Cleanup and add visibility to missing functions 2019-04-05 16:18:13 +02:00
AUTHORS.md Updated distribution information 2019-02-24 10:43:42 +01:00
LICENSE.md Updated distribution information 2019-02-24 10:43:42 +01:00
Makefile Add support for generic Makefile variables 2019-04-25 15:33:18 +02:00
README.md Corrected installation instructions 2019-02-23 21:18:12 +01:00
examples.mk Implemented all except parser 2019-03-18 09:13:02 +01:00
libaisl.pc.example Add respect to LIB_DIR variable and pkgconfig example 2019-04-07 14:33:22 +02:00
project.mk Add support for generic Makefile variables 2019-04-25 15:33:18 +02:00

README.md

AISL

Asynchronous Internet Server Library

Installation on CentOS 7 / RedHat 7

  1. Add repository
sudo curl -o /etc/yum.repos.d/lowenware.repo https://lowenware.com/rpm/redhat-7/lowenware.repo
  1. Import GPG key
sudo rpm --import https://lowenware.com/rpm/RPM-GPG-KEY-Lowenware
  1. Install
sudo yum install aisl aisl-devel

Installation from sources on any distro

  1. Configuration
cmake -DCMAKE_INSTALL_PREFIX=/usr/local
  1. Compilation
make
  1. Installation
sudo make install