-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathINSTALL
More file actions
38 lines (27 loc) · 856 Bytes
/
INSTALL
File metadata and controls
38 lines (27 loc) · 856 Bytes
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
The easiest way:
$ mkdir build
$ cd build
$ cmake ../
$ make
$ sudo make install
If the build fails because you're missing a dependency:
$ (Install any missing dependencies.)
$ make clean-all
$ cmake ../
$ make
$ sudo make install
#### Bundled libraries
Ettercap now bundles the following libraries with the source distribution:
libnet 1.3
curl 8.18.0
luajit 2.1-20250826
check 0.15.2
We will build bundled libraries that Ettercap depends upon, so you
don't have to!
By default, the build system will search for system-provided libraries. If it
doesn't find the particular library it wants, it will build the library, itself.
# To disable the use of bundled libraries:
$ cmake -DBUNDLED_LIBS=Off ../
# To disable the searching for system-provided libraries, and use
# bundled libraries exclusively:
$ cmake -DSYSTEM_LIBS=Off ../