"Fossies" - the Fresh Open Source Software Archive

Member "ettercap-0.8.3.1/INSTALL" (1 Aug 2020, 839 Bytes) of package /linux/privat/ettercap-0.8.3.1.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes report for "INSTALL": 0.8.3_vs_0.8.3.1.

    1 The easiest way:
    2 
    3 $ mkdir build
    4 $ cd build
    5 $ cmake ../
    6 $ make
    7 $ make install
    8 
    9 If the build fails because you're missing a dependency:
   10 
   11 $ (Install any missing dependencies.)
   12 $ make clean-all
   13 $ cmake ../
   14 $ make
   15 $ make install
   16 
   17 
   18 #### Bundled libraries
   19 Ettercap now bundles the following libraries with the source distribution:
   20   libnet 1.2
   21   curl 7.71.1
   22   luajit 2.0.5
   23   check 0.15.0
   24 
   25 
   26 We will build bundled libraries that Ettercap depends upon, so you 
   27 don't have to! 
   28 
   29 By default, the build system will search for system-provided libraries. If it 
   30 doesn't find the particular library it wants, it will build the library, itself.
   31 
   32 # To disable the use of bundled libraries:
   33   $ cmake -DBUNDLED_LIBS=Off ../
   34 
   35 # To disable the searching for system-provided libraries, and use 
   36 # bundled libraries exclusively:
   37   $ cmake -DSYSTEM_LIBS=Off ../
   38