changeset 12:198c379caaa7 default tip

remove explicit tango import path
author Frank Benoit <benoit@tionex.de>
date Sun, 18 Nov 2007 18:16:28 +0100
parents 44c987465a20
children
files dbus-d/dsrc/dsss.conf dbus-d/dsrc/org/freedesktop/dbus/tool/CreateInterface.d
diffstat 2 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/dbus-d/dsrc/dsss.conf	Fri Nov 09 16:17:32 2007 +0100
+++ b/dbus-d/dsrc/dsss.conf	Sun Nov 18 18:16:28 2007 +0100
@@ -1,6 +1,5 @@
 [test/client/DClient.d]
-    buildflags+=-I~/tango
-    buildflags+=-L-ldbus-1
+buildflags+=-L-ldbus-1
 target=DClient.exe
 
 [org/freedesktop/dbus/tool/CreateInterface.d]
--- a/dbus-d/dsrc/org/freedesktop/dbus/tool/CreateInterface.d	Fri Nov 09 16:17:32 2007 +0100
+++ b/dbus-d/dsrc/org/freedesktop/dbus/tool/CreateInterface.d	Sun Nov 18 18:16:28 2007 +0100
@@ -2,7 +2,7 @@
  * Copyright (C) 2007  Frank Benoit
  *
  * Licensed under the Academic Free License version 2.1
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -12,7 +12,7 @@
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
@@ -420,7 +420,7 @@
 // STRUCT    114      (ASCII 'r'), 40 (ASCII '('), 41 (ASCII ')') Struct
 // VARIANT   118      (ASCII 'v')     Variant type (the type of the value is part of the value itself)
 // DICT_ENTRY 101     (ASCII 'e'), 123 (ASCII '{'), 125 (ASCII '}')   Entry in a dict or map (array of key-value pairs)
-//            
+//
 
 
 void parseNode( Element el ){
@@ -433,7 +433,7 @@
     }
     foreach( node; el.getChilds( ID_NODE )){
         parseNode( node );
-    }     
+    }
 }
 
 void unknownElement( char[][] msg ... ){
@@ -809,7 +809,7 @@
     p.newline;
 }
 class TextList {
-    
+
     private char[] separator;
     private char[] sb;
     private char[] prefix;
@@ -826,7 +826,7 @@
         this.separator = separator;
         this.postfix = postfix;
     }
-    
+
     public static TextList createParameterList(){
         return new TextList( " ", ", ", " " );
     }