-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.freebsd
50 lines (36 loc) · 1.79 KB
/
README.freebsd
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
README.freebsd
**************
Introduction
============
This file describes the steps required to build this bundle on a supported
FreeBSD system. See README for more information about the tested
configurations.
The kqueue-based monitor should be compatible with any *BSD release with
support for kqueue. So far, however, the author has only tested this release
on FreeBSD v. >= 10.0. Feedback on different *BSD systems is much appreciated
and will benefit other users as well.
Installation
============
See the INSTALL file for detailed information about how to configure and install
fsw.
fsw is a C++ program and a C++ compiler compliant with the C++11 standard is
required to compile it. FreeBSD v. >= 10.0 ships by default with the CLang
compiler suite which builds this package correctly. The GCC compiler collection
shipped with FreeBSD, however, is not C++11 compliant and cannot build this
package.
The configure script will look for clang++ and use it if availabe. However,
should the user want to use another compiler, the following command can be used:
$ ./configure CXX=compiler
where the name of the desired compiler is assigner to the CXX variable.
-----
Copyright (C) 2014 Enrico M. Crisostomo
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.