Asynchronous Internet Server Library https://lowenware.com/aisl/
Go to file
Ilja Kartašov 4b137d7c55 Initiated 2019-02-23 21:06:34 +01:00
cStuff@a423fa7a6d Initiated 2019-02-23 21:06:34 +01:00
include/aisl Initiated 2019-02-23 21:06:34 +01:00
library Initiated 2019-02-23 21:06:34 +01:00
.gitignore Initiated 2019-02-23 21:06:34 +01:00
.gitmodules Initiated 2019-02-23 21:06:34 +01:00
AUTHORS Initiated 2019-02-23 21:06:34 +01:00
CHANGELOG Initiated 2019-02-23 21:06:34 +01:00
CMakeLists.txt Initiated 2019-02-23 21:06:34 +01:00
LICENSE Initiated 2019-02-23 21:06:34 +01:00
README.md Initiated 2019-02-23 21:06:34 +01:00
aisl.proj Initiated 2019-02-23 21:06:34 +01:00
cmake.compiler Initiated 2019-02-23 21:06:34 +01:00
cmake.paths Initiated 2019-02-23 21:06:34 +01:00
cmake.system Initiated 2019-02-23 21:06:34 +01:00
cmake.version Initiated 2019-02-23 21:06:34 +01:00
project.sh Initiated 2019-02-23 21:06:34 +01:00
version Initiated 2019-02-23 21:06:34 +01:00

README.md

AISL

Asynchronous Internet Server Library

Installation on CentOS 7 / RedHat 7

  1. Add repository
cd ~
wget http://lowenware.com/rpm/redhat-7/lowenware.repo
sudo mv lowenware.repo /etc/yum.repos.d/
  1. Import GPG key
sudo rpm --import http://lowenware.com/rpm/RPM-GPG-KEY-Lowenware
  1. Install
sudo yum install aisl aisl-devel

Installation on OpenSUSE Tumbleweed

  1. Add repository
sudo zypper ar http://lowenware.com/rpm/opensuse-tumbleweed/lowenware.repo
  1. Import GPG key
sudo rpm --import http://lowenware.com/rpm/RPM-GPG-KEY-Lowenware
  1. Install
sudo zypper 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