--- a/src/internet/wscript Sun Feb 27 01:00:17 2011 -0500
+++ b/src/internet/wscript Sun Feb 27 11:31:43 2011 +0000
@@ -230,6 +230,7 @@
'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',
--- a/src/routing/click/examples/nsclick-raw-wlan.cc Sun Feb 27 01:00:17 2011 -0500
+++ b/src/routing/click/examples/nsclick-raw-wlan.cc Sun Feb 27 11:31:43 2011 +0000
@@ -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;
--- a/src/routing/click/examples/nsclick-udp-client-server-wifi.cc Sun Feb 27 01:00:17 2011 -0500
+++ b/src/routing/click/examples/nsclick-udp-client-server-wifi.cc Sun Feb 27 11:31:43 2011 +0000
@@ -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;
--- a/src/routing/click/helper/click-internet-stack-helper.h Sun Feb 27 01:00:17 2011 -0500
+++ b/src/routing/click/helper/click-internet-stack-helper.h Sun Feb 27 11:31:43 2011 +0000
@@ -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 {
--- a/src/routing/click/wscript Sun Feb 27 01:00:17 2011 -0500
+++ b/src/routing/click/wscript Sun Feb 27 11:31:43 2011 +0000
@@ -69,7 +69,7 @@
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',