Index: b/tools/ada2wsdl-options.adb
===================================================================
--- /dev/null
+++ b/tools/ada2wsdl-options.adb
@@ -0,0 +1,28 @@
+--  Ada2WSDL.Options - Debian-specific file
+--  Copyright (c) 2004, 2006 Ludovic Brenta <lbrenta@debian.org>
+--
+--  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
+--  (at your option) any later version.
+--
+--  This program is distributed in the hope that it will be useful,
+--  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.
+--
+--  The upstream makefile normally generates this file before
+--  compiling the AWS tools.  The generated file does however not
+--  contain the options appropriate for Debian.  This file contains
+--  Debian-specific options.
+
+with Ada2WSDL.Parser;
+package body Ada2WSDL.Options is
+   procedure Set_Default is
+   begin
+      Parser.Add_Option ("-aI/usr/share/ada/adainclude/xmlada");
+      Parser.Add_Option ("-aO/usr/lib/ada/adalib/xmlada");
+      Parser.Add_Option ("-aI/usr/share/ada/adainclude/aws");
+      Parser.Add_Option ("-aO/usr/lib/ada/adalib/aws");
+   end Set_Default;
+end Ada2WSDL.Options;
