1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Index: libaws-2.2/tools/ada2wsdl-options.adb
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ libaws-2.2/tools/ada2wsdl-options.adb 2006-07-30 12:57:08.000000000 +0200
@@ -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/xmlada2");
+ Parser.Add_Option ("-aO/usr/lib/ada/adalib/xmlada2");
+ Parser.Add_Option ("-aI/usr/share/ada/adainclude/aws");
+ Parser.Add_Option ("-aO/usr/lib/ada/adalib/aws");
+ end Set_Default;
+end Ada2WSDL.Options;
|