Changeset 5545
- Timestamp:
- 06/29/08 16:37:10 (3 months ago)
- Files:
-
- framework3/trunk/external/ruby-lorcon/README (modified) (1 diff)
- framework3/trunk/external/ruby-lorcon/extconf.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
framework3/trunk/external/ruby-lorcon/README
r4179 r5545 6 6 http://www.802.11mercenary.net/lorcon/ 7 7 8 To build this extension: 9 10 1) Download, compile, and install lorcon 8 11 The latest version of lorcon can pulled from SVN: 9 $ svn co https://www.nycccp.net/svn/tx-80211 12 $ svn co https://802.11ninja.net/svn/lorcon/trunk/ lorcon 13 $ cd lorcon 14 $ ./configure 15 $ make 16 $ sudo make install 17 -- or -- 18 $ su 19 # make install 20 # exit 21 $ cd .. 10 22 11 To build this extension: 23 2) build the ruby extension.. 12 24 $ ruby extconf.rb 13 25 $ make 26 $ sudo make install 27 -- or -- 14 28 $ su 15 29 # make install 30 31 32 NOTES: 33 34 if Ubuntu 8.04 (and probably others) bitches about 'mkmf', 35 you need ruby dev package. 36 37 :~/metasploit/external/ruby-lorcon$ ruby extconf.rb 38 extconf.rb:2:in `require': no such file to load -- mkmf (LoadError) 39 from extconf.rb:2 40 41 :~/metasploit/external/ruby-lorcon$ sudo apt-get install ruby1.8-dev framework3/trunk/external/ruby-lorcon/extconf.rb
r4586 r5545 2 2 require 'mkmf' 3 3 4 if have_library("orcon", "tx80211_txpacket", "tx80211.h")4 if (have_library("orcon", "tx80211_txpacket", "tx80211.h") or find_library("orcon", "tx80211_txpacket", "tx80211.h")) 5 5 create_makefile("Lorcon") 6 6 else
