Index: tools/ListenToArduino/ListenToArduino.cc
===================================================================
--- tools/ListenToArduino/ListenToArduino.cc	(revision 225)
+++ tools/ListenToArduino/ListenToArduino.cc	(revision 229)
@@ -117,5 +117,5 @@
 	Data.updateService();
 
-	usleep(atoi(Srv.GetConfig("Period", "10")) * 1000000);	
+	usleep(atoi(Srv.GetConfig("Period", "10").c_str()) * 1000000);	
   } // while()
        
Index: tools/Scripts/Logon
===================================================================
--- tools/Scripts/Logon	(revision 225)
+++ tools/Scripts/Logon	(revision 229)
@@ -7,6 +7,7 @@
 export DIM_HOST_NODE=$HOST.ethz.ch
 if [ -z "$DIMDIR" ]; then export DIMDIR=/usr/local/dim/; fi
+if [ -z "$QWTDIR" ]; then export QWTDIR=/usr/local/qwt/; fi
 
-export LD_LIBRARY_PATH=/usr/local/qwt-5.2.0/lib:$DIMDIR/linux:$LD_LIBRARY_PATH
+export LD_LIBRARY_PATH=$QWTDIR/lib:$DIMDIR/linux:$LD_LIBRARY_PATH
 export PATH=$DIMDIR/linux:$REPOS_DIR/tools/Scripts:/usr/local/Trolltech/Qt-4.4.3/bin:.:$PATH
 
Index: tools/SkyQualityMonitor/sqm.cpp
===================================================================
--- tools/SkyQualityMonitor/sqm.cpp	(revision 225)
+++ tools/SkyQualityMonitor/sqm.cpp	(revision 229)
@@ -34,6 +34,6 @@
   // Start server and request configuration data
   EvidenceServer Srv(SERVER_NAME);
-  char *Address = Srv.GetConfig("address");
-  unsigned int Port = atoi(Srv.GetConfig("port"));
+  const char *Address = Srv.GetConfig("address").c_str();
+  unsigned int Port = atoi(Srv.GetConfig("port").c_str());
     
   // Open socket descriptor
@@ -69,5 +69,5 @@
   while(!Srv.ExitRequest) {
 	// Request measurement period  
-    Period = atoi(Srv.GetConfig("period"));
+    Period = atoi(Srv.GetConfig("period").c_str());
 
     // Write read command to socket
Index: tools/ddd/ddd.pro
===================================================================
--- tools/ddd/ddd.pro	(revision 225)
+++ tools/ddd/ddd.pro	(revision 229)
@@ -6,9 +6,9 @@
 TARGET = 
 DEPENDPATH += .
-INCLUDEPATH += . /usr/local/qwt-5.2.0/include
+INCLUDEPATH += . /ihp/local/qwt-5.2.1/include
 
 # Input
 HEADERS += GUI.h ../../pixelmap/Pixel.h ../../pixelmap/PixelMap.h ../../drsdaq/RawDataCTX.h
 SOURCES += Functions.cpp GUI.cpp ../../pixelmap/Pixel.cc ../../pixelmap/PixelMap.cc ../../drsdaq/RawDataCTX.cc
-LIBS += -L/usr/local/qwt-5.2.0/lib -lqwt
+LIBS += -L/ihp/local/qwt-5.2.1/lib -lqwt
 QT += network
