forked from emcrisostomo/fswatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.freebsd
49 lines (36 loc) · 1.91 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
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
fswatch.
fswatch 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 enforces an ordered compiler search list and clang++ will
be used first if available. If you do not like this choice and wish to use
another compiler set the value of the CXX environment variable to the name of
your compiler binary. If, for example, you wish to use the g++ compiler, then
use this command to configure the build:
$ ./configure CXX=g++
-----
Copyright (c) 2014-2015 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/>.