Skip to content

Commit

Permalink
Fixes Click build which was affected by recent modular refactoring work
Browse files Browse the repository at this point in the history
  • Loading branch information
lalithsuresh committed Feb 27, 2011
1 parent 93205eb commit cf64de8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/internet/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ def build(bld):
'model/tcp-socket-factory.h',
'model/ipv4.h',
'model/ipv4-raw-socket-factory.h',
'model/ipv4-raw-socket-impl.h',
'model/ipv6-header.h',
'model/ipv6-interface-address.h',
'model/ipv6-route.h',
Expand Down
1 change: 1 addition & 0 deletions src/routing/click/examples/nsclick-raw-wlan.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include "ns3/helper-module.h"
#include "ns3/click-internet-stack-helper.h"
#include "ns3/log.h"
#include "ns3/mobility-helper.h"

using namespace ns3;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include "ns3/helper-module.h"
#include "ns3/ipv4-click-routing.h"
#include "ns3/click-internet-stack-helper.h"
#include "ns3/mobility-helper.h"

using namespace ns3;

Expand Down
2 changes: 1 addition & 1 deletion src/routing/click/helper/click-internet-stack-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "ns3/object-factory.h"
#include "ns3/ipv4-l3-protocol.h"
#include "ns3/ipv6-l3-protocol.h"
#include "ns3/trace-helper.h"
#include "ns3/internet-trace-helper.h"
#include <map>

namespace ns3 {
Expand Down
2 changes: 1 addition & 1 deletion src/routing/click/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int main()

def build(bld):

module = bld.create_ns3_module('click', ['internet', 'contrib'])
module = bld.create_ns3_module('click', ['internet'])
module.includes = '. CPPPATH_NSCLICK'
module.source = [
'model/ipv4-click-routing.cc',
Expand Down

0 comments on commit cf64de8

Please sign in to comment.