[Gd-chatter] r11226 - in branches/GD_2_4/src: common common/getopt d2c/compiler/base d2c/compiler/cback d2c/compiler/convert d2c/compiler/fer-transform d2c/compiler/front d2c/compiler/main d2c/compiler/optimize d2c/compiler/parser d2c/compiler/parser/test d2c/runtime/Macintosh/d2c Runtime Heap Stub d2c/runtime/dylan/tests demos/duim/duim-gui-test-suite demos/duim/pente demos/duim/reversi demos/duim/scribble demos/minesweeper demos/tk-html2txt duim/tests/core platform/carbon/carbon-duim platform/carbon/duim-gui-test-suite platform/gtk+/gobject-tool tests tools/melange tools/pidgin/src
prom at gwydiondylan.org
prom at gwydiondylan.org
Tue Mar 6 20:09:36 CET 2007
Author: prom
Date: Tue Mar 6 20:09:28 2007
New Revision: 11226
Removed:
branches/GD_2_4/src/common/getopt/
Modified:
branches/GD_2_4/src/common/ (props changed)
branches/GD_2_4/src/common/Makegen
branches/GD_2_4/src/d2c/compiler/base/Makegen
branches/GD_2_4/src/d2c/compiler/cback/Makegen
branches/GD_2_4/src/d2c/compiler/convert/Makegen
branches/GD_2_4/src/d2c/compiler/fer-transform/Makegen
branches/GD_2_4/src/d2c/compiler/front/Makegen
branches/GD_2_4/src/d2c/compiler/main/Makegen
branches/GD_2_4/src/d2c/compiler/main/main-exports.dylan
branches/GD_2_4/src/d2c/compiler/optimize/Makegen
branches/GD_2_4/src/d2c/compiler/parser/Makegen
branches/GD_2_4/src/d2c/compiler/parser/test/Makegen
branches/GD_2_4/src/d2c/runtime/Macintosh/d2c Runtime Heap Stub/runtime-heap-app-exports.dylan
branches/GD_2_4/src/d2c/runtime/dylan/tests/Makegen
branches/GD_2_4/src/demos/duim/duim-gui-test-suite/Makegen
branches/GD_2_4/src/demos/duim/pente/Makegen
branches/GD_2_4/src/demos/duim/reversi/Makegen
branches/GD_2_4/src/demos/duim/scribble/Makegen
branches/GD_2_4/src/demos/minesweeper/Makegen
branches/GD_2_4/src/demos/tk-html2txt/Makegen
branches/GD_2_4/src/duim/tests/core/Makegen
branches/GD_2_4/src/platform/carbon/carbon-duim/Makegen
branches/GD_2_4/src/platform/carbon/duim-gui-test-suite/Makegen
branches/GD_2_4/src/platform/gtk+/gobject-tool/Makegen
branches/GD_2_4/src/platform/gtk+/gobject-tool/library.dylan
branches/GD_2_4/src/platform/gtk+/gobject-tool/module.dylan
branches/GD_2_4/src/tests/Makegen
branches/GD_2_4/src/tests/getopt-test-exports.dylan
branches/GD_2_4/src/tools/melange/Makegen
branches/GD_2_4/src/tools/melange/exports.dylan
branches/GD_2_4/src/tools/pidgin/src/Makegen
branches/GD_2_4/src/tools/pidgin/src/ansi-c-test-exports.dylan
branches/GD_2_4/src/tools/pidgin/src/pidgin-exports.dylan
Log:
Job: minor
"Backported" the rename of getopt to command-line-parser to GD_2_4.
Modified: branches/GD_2_4/src/common/Makegen
==============================================================================
--- branches/GD_2_4/src/common/Makegen (original)
+++ branches/GD_2_4/src/common/Makegen Tue Mar 6 20:09:28 2007
@@ -12,7 +12,7 @@
@bootstrap_libraries =
('streams', 'standard-io', 'print', 'format', 'collection-extensions',
'table-ext', 'string-ext', 'regular-expressions',
- 'stream-ext', 'transcendental', 'getopt', 'base-file-system');
+ 'stream-ext', 'transcendental', 'threads', 'format-out', 'common-dylan', 'io', 'command-line-parser', 'base-file-system');
# These libraries have been introduced since 2.2.0. They may not be used by
# d2c, parsergen or any of the above libraries. Once common-dylan stabilizes,
@@ -20,8 +20,8 @@
# compatibility with 2.2.0 and port everything to build against these
# libraries.
@non_bootstrap_libraries =
- ('transcendental', 'threads', 'format-out', 'common-dylan', 'collections',
- 'io', 'file-system', 'time', 'date', 'system', 'locators', 'matrix');
+ ('collections',
+ 'file-system', 'time', 'date', 'system', 'locators', 'matrix');
#'network'
#'internal-time'
Modified: branches/GD_2_4/src/d2c/compiler/base/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/base/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/base/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/streams'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
Modified: branches/GD_2_4/src/d2c/compiler/cback/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/cback/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/cback/Makegen Tue Mar 6 20:09:28 2007
@@ -6,7 +6,7 @@
. ' -L../../../common/streams'
. ' -L../../../common/stream-ext'
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
. ' -L../../../common/format'
Modified: branches/GD_2_4/src/d2c/compiler/convert/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/convert/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/convert/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/streams'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
Modified: branches/GD_2_4/src/d2c/compiler/fer-transform/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/fer-transform/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/fer-transform/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/streams'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
Modified: branches/GD_2_4/src/d2c/compiler/front/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/front/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/front/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/streams'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
Modified: branches/GD_2_4/src/d2c/compiler/main/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/main/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/main/Makegen Tue Mar 6 20:09:28 2007
@@ -39,12 +39,16 @@
. ' -L../../../common/collection-extensions'
. ' -L../../../common/table-ext'
. ' -L../../../common/string-ext'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
+ . ' -L../../../common/threads'
. ' -L../../../common/streams'
+ . ' -L../../../common/common-dylan'
. ' -L../../../common/print'
. ' -L../../../common/format'
- . ' -L../../../common/getopt'
. ' -L../../../common/standard-io'
+ . ' -L../../../common/format-out'
+ . ' -L../../../common/io'
+ . ' -L../../../common/command-line-parser'
. ' -L../../../common/regular-expressions'
. ' -L../../../common/base-file-system'
. ' -L../base'
Modified: branches/GD_2_4/src/d2c/compiler/main/main-exports.dylan
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/main/main-exports.dylan (original)
+++ branches/GD_2_4/src/d2c/compiler/main/main-exports.dylan Tue Mar 6 20:09:28 2007
@@ -32,7 +32,7 @@
use Dylan;
use String-extensions;
use Random;
- use parse-arguments;
+ use command-line-parser;
use compiler-base;
use compiler-front;
use compiler-fer-transform;
@@ -58,7 +58,7 @@
use substring-search;
use character-type;
use random;
- use parse-arguments;
+ use command-line-parser;
use option-parser-protocol;
use utils;
Modified: branches/GD_2_4/src/d2c/compiler/optimize/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/optimize/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/optimize/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/streams'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
Modified: branches/GD_2_4/src/d2c/compiler/parser/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/parser/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/parser/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
. ' -L../../../common/collection-extensions'
- . ' -L../../runtime/random'
+ . ' -L../../../d2c/runtime/random'
. ' -L../../../common/streams'
. ' -L../../../common/standard-io'
. ' -L../../../common/print'
Modified: branches/GD_2_4/src/d2c/compiler/parser/test/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/compiler/parser/test/Makegen (original)
+++ branches/GD_2_4/src/d2c/compiler/parser/test/Makegen Tue Mar 6 20:09:28 2007
@@ -3,7 +3,7 @@
. ' -L../../../../common/threads'
. ' -L../../../../common/streams'
. ' -L../../../../common/table-ext'
- . ' -L../../../runtime/random'
+ . ' -L../../../../d2c/runtime/random'
. ' -L../../../../common/common-dylan'
. ' -L../../../../common/print'
. ' -L../../../../common/format'
Modified: branches/GD_2_4/src/d2c/runtime/Macintosh/d2c Runtime Heap Stub/runtime-heap-app-exports.dylan
==============================================================================
--- branches/GD_2_4/src/d2c/runtime/Macintosh/d2c Runtime Heap Stub/runtime-heap-app-exports.dylan (original)
+++ branches/GD_2_4/src/d2c/runtime/Macintosh/d2c Runtime Heap Stub/runtime-heap-app-exports.dylan Tue Mar 6 20:09:28 2007
@@ -20,7 +20,7 @@
use Format-Out; // Format-out
- use parse-arguments; // GetOpt
+ use command-line-parser; // GetOpt
use Matrix; // Matrix
@@ -86,7 +86,7 @@
use Format-Out; // Format-Out
use option-parser-protocol; // GetOpt
- use parse-arguments;
+ use command-line-parser;
use Matrix; // Matrix
Modified: branches/GD_2_4/src/d2c/runtime/dylan/tests/Makegen
==============================================================================
--- branches/GD_2_4/src/d2c/runtime/dylan/tests/Makegen (original)
+++ branches/GD_2_4/src/d2c/runtime/dylan/tests/Makegen Tue Mar 6 20:09:28 2007
@@ -5,7 +5,7 @@
. ' -L../../../../common/threads'
. ' -L../../../../common/streams'
. ' -L../../../../common/table-ext'
- . ' -L../../random'
+ . ' -L../../../../d2c/runtime/random'
. ' -L../../../../common/common-dylan'
. ' -L../../../../qa/testworks'
. ' -L../../../../qa/testworks-specs';
Modified: branches/GD_2_4/src/demos/duim/duim-gui-test-suite/Makegen
==============================================================================
--- branches/GD_2_4/src/demos/duim/duim-gui-test-suite/Makegen (original)
+++ branches/GD_2_4/src/demos/duim/duim-gui-test-suite/Makegen Tue Mar 6 20:09:28 2007
@@ -23,6 +23,8 @@
. ' -L../../../duim/core'
. ' -L../../../duim/vanilla'
. ' -L../../../duim/panes'
+ . ' -L../../../platform/carbon/carbon'
+ . ' -L../../../platform/carbon/carbon-duim'
. ' -L../../../platform/gtk+/gtk+'
. ' -L../../../platform/gtk+/gtk-duim'
. ' -L../../../common/io';
Modified: branches/GD_2_4/src/demos/duim/pente/Makegen
==============================================================================
--- branches/GD_2_4/src/demos/duim/pente/Makegen (original)
+++ branches/GD_2_4/src/demos/duim/pente/Makegen Tue Mar 6 20:09:28 2007
@@ -31,6 +31,8 @@
. ' -L../../../duim/core'
. ' -L../../../duim/vanilla'
. ' -L../../../duim/panes'
+ . ' -L../../../platform/carbon/carbon'
+ . ' -L../../../platform/carbon/carbon-duim'
. ' -L../../../platform/gtk+/gtk+'
. ' -L../../../platform/gtk+/gtk-duim';
Modified: branches/GD_2_4/src/demos/duim/reversi/Makegen
==============================================================================
--- branches/GD_2_4/src/demos/duim/reversi/Makegen (original)
+++ branches/GD_2_4/src/demos/duim/reversi/Makegen Tue Mar 6 20:09:28 2007
@@ -32,6 +32,8 @@
. ' -L../../../duim/core'
. ' -L../../../duim/vanilla'
. ' -L../../../duim/panes'
+ . ' -L../../../platform/carbon/carbon'
+ . ' -L../../../platform/carbon/carbon-duim'
. ' -L../../../platform/gtk+/gtk+'
. ' -L../../../platform/gtk+/gtk-duim';
Modified: branches/GD_2_4/src/demos/duim/scribble/Makegen
==============================================================================
--- branches/GD_2_4/src/demos/duim/scribble/Makegen (original)
+++ branches/GD_2_4/src/demos/duim/scribble/Makegen Tue Mar 6 20:09:28 2007
@@ -23,6 +23,8 @@
. ' -L../../../duim/core'
. ' -L../../../duim/vanilla'
. ' -L../../../duim/panes'
+ . ' -L../../../platform/carbon/carbon'
+ . ' -L../../../platform/carbon/carbon-duim'
. ' -L../../../platform/gtk+/gtk+'
. ' -L../../../platform/gtk+/gtk-duim';
Modified: branches/GD_2_4/src/demos/minesweeper/Makegen
==============================================================================
--- branches/GD_2_4/src/demos/minesweeper/Makegen (original)
+++ branches/GD_2_4/src/demos/minesweeper/Makegen Tue Mar 6 20:09:28 2007
@@ -1,5 +1,6 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
+ . ' -L../../d2c/runtime/tk'
. ' -L../../common/collection-extensions'
. ' -L../../common/table-ext'
. ' -L../../common/string-ext'
Modified: branches/GD_2_4/src/demos/tk-html2txt/Makegen
==============================================================================
--- branches/GD_2_4/src/demos/tk-html2txt/Makegen (original)
+++ branches/GD_2_4/src/demos/tk-html2txt/Makegen Tue Mar 6 20:09:28 2007
@@ -4,7 +4,8 @@
. ' -L../../common/standard-io'
. ' -L../../common/collection-extensions'
. ' -L../../common/table-ext'
- . ' -L../../common/string-ext';
+ . ' -L../../common/string-ext'
+ . ' -L../../d2c/runtime/tk';
do emit_library_rule(
'html2txt', '$(BUILDROOT)/force.timestamp', '', 'no-d2c', 'compile-mindy',
Modified: branches/GD_2_4/src/duim/tests/core/Makegen
==============================================================================
--- branches/GD_2_4/src/duim/tests/core/Makegen (original)
+++ branches/GD_2_4/src/duim/tests/core/Makegen Tue Mar 6 20:09:28 2007
@@ -8,26 +8,22 @@
. ' -L../../../qa/testworks'
. ' -L../../../qa/testworks-specs'
. ' -L../../../common/collections'
- . ' -L../../../duim/utilities'
- . ' -L../../../duim/geometry'
- . ' -L../../../duim/dcs'
- . ' -L../../../duim/sheets'
- . ' -L../../../duim/graphics'
- . ' -L../../../duim/extended-geometry'
- . ' -L../../../duim/layouts'
- . ' -L../../../duim/commands'
- . ' -L../../../duim/gadgets'
+ . ' -L../../utilities'
+ . ' -L../../geometry'
+ . ' -L../../dcs'
+ . ' -L../../sheets'
+ . ' -L../../graphics'
+ . ' -L../../extended-geometry'
+ . ' -L../../layouts'
+ . ' -L../../commands'
+ . ' -L../../gadgets'
. ' -L../../../common/print'
. ' -L../../../common/format'
. ' -L../../../common/standard-io'
. ' -L../../../common/format-out'
- . ' -L../../../duim/frames'
- . ' -L../../../duim/core'
- . ' -L../../../duim/vanilla'
- . ' -L../../../duim/panes'
- . ' -L../../../platform/gtk+/gtk+'
- . ' -L../../../platform/gtk+/gtk-duim'
- . ' -L../../../common/io'
+ . ' -L../../frames'
+ . ' -L../../core'
+ . ' -L../../panes'
. ' -L.';
do emit_library_rule(
Modified: branches/GD_2_4/src/platform/carbon/carbon-duim/Makegen
==============================================================================
--- branches/GD_2_4/src/platform/carbon/carbon-duim/Makegen (original)
+++ branches/GD_2_4/src/platform/carbon/carbon-duim/Makegen Tue Mar 6 20:09:28 2007
@@ -1,10 +1,10 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
- . ' -L../../../common/common-dylan'
- . ' -L../../../d2c/runtime/random'
. ' -L../../../common/threads'
. ' -L../../../common/streams'
. ' -L../../../common/table-ext'
+ . ' -L../../../d2c/runtime/random'
+ . ' -L../../../common/common-dylan'
. ' -L../../../common/collections'
. ' -L../../../duim/utilities'
. ' -L../../../duim/geometry'
Modified: branches/GD_2_4/src/platform/carbon/duim-gui-test-suite/Makegen
==============================================================================
--- branches/GD_2_4/src/platform/carbon/duim-gui-test-suite/Makegen (original)
+++ branches/GD_2_4/src/platform/carbon/duim-gui-test-suite/Makegen Tue Mar 6 20:09:28 2007
@@ -23,10 +23,12 @@
. ' -L../../../common/format-out'
. ' -L../../../duim/frames'
. ' -L../../../duim/core'
+ . ' -L../../../duim/vanilla'
. ' -L../../../duim/panes'
. ' -L../carbon'
. ' -L../carbon-duim'
- . ' -L../../../d2c/runtime/random';
+ . ' -L../../gtk+/gtk+'
+ . ' -L../../gtk+/gtk-duim';
do emit_library_rule(
'duim-gui-test-suite', '$(BUILDROOT)/force.timestamp', '', 'compile',
Modified: branches/GD_2_4/src/platform/gtk+/gobject-tool/Makegen
==============================================================================
--- branches/GD_2_4/src/platform/gtk+/gobject-tool/Makegen (original)
+++ branches/GD_2_4/src/platform/gtk+/gobject-tool/Makegen Tue Mar 6 20:09:28 2007
@@ -7,9 +7,10 @@
. ' -L../../../common/common-dylan'
. ' -L../../../common/print'
. ' -L../../../common/format'
- . ' -L../../../common/getopt'
. ' -L../../../common/standard-io'
. ' -L../../../common/format-out'
+ . ' -L../../../common/io'
+ . ' -L../../../common/command-line-parser'
. ' -L../../../tools/pidgin/src'
. ' -L../../../common/collection-extensions'
. ' -L../../../common/string-ext'
Modified: branches/GD_2_4/src/platform/gtk+/gobject-tool/library.dylan
==============================================================================
--- branches/GD_2_4/src/platform/gtk+/gobject-tool/library.dylan (original)
+++ branches/GD_2_4/src/platform/gtk+/gobject-tool/library.dylan Tue Mar 6 20:09:28 2007
@@ -4,7 +4,7 @@
define library gobject-tool
use dylan;
use common-dylan;
- use parse-arguments;
+ use command-line-parser;
use streams;
use standard-io;
use format;
Modified: branches/GD_2_4/src/platform/gtk+/gobject-tool/module.dylan
==============================================================================
--- branches/GD_2_4/src/platform/gtk+/gobject-tool/module.dylan (original)
+++ branches/GD_2_4/src/platform/gtk+/gobject-tool/module.dylan Tue Mar 6 20:09:28 2007
@@ -41,7 +41,7 @@
define module gobject-tool
use common-dylan, exclude: { format-to-string };
use Extensions, import: { *warning-output* };
- use parse-arguments;
+ use command-line-parser;
use streams;
use standard-io;
use format;
Modified: branches/GD_2_4/src/tests/Makegen
==============================================================================
--- branches/GD_2_4/src/tests/Makegen (original)
+++ branches/GD_2_4/src/tests/Makegen Tue Mar 6 20:09:28 2007
@@ -3,19 +3,22 @@
$D2CFLAGS # added by update-libdirs
= $d2c_runtime
- . ' -L../common/collection-extensions'
. ' -L../common/streams'
. ' -L../common/print'
- . ' -L../common/standard-io'
. ' -L../common/format'
+ . ' -L../common/standard-io'
. ' -L../common/format-out'
+ . ' -L../common/threads'
. ' -L../common/table-ext'
- . ' -L../common/getopt'
- . ' -L../common/matrix'
. ' -L../d2c/runtime/random'
+ . ' -L../common/common-dylan'
+ . ' -L../common/io'
+ . ' -L../common/command-line-parser'
+ . ' -L../common/collection-extensions'
. ' -L../common/string-ext'
+ . ' -L../common/time'
. ' -L../common/regular-expressions'
- . ' -L../common/time';
+ . ' -L../common/matrix';
$shared = 0;
@@ -69,7 +72,7 @@
print <<"EOF"
-DYLANPATH=../common/transcendental:../mindy/libraries/dylan:../common/collection-extensions:../common/table-ext:../common/string-ext:../common/standard-io:../common/streams:../mindy/libraries/random:../common/print:../common/format:../common/matrix::../common/format-out:../common/time:../common/regular-expressions:../common/getopt
+DYLANPATH=../common/transcendental:../mindy/libraries/dylan:../common/collection-extensions:../common/table-ext:../common/string-ext:../common/standard-io:../common/streams:../mindy/libraries/random:../common/print:../common/format:../common/matrix::../common/format-out:../common/time:../common/regular-expressions:../common/command-line-parser
EOF
;
Modified: branches/GD_2_4/src/tests/getopt-test-exports.dylan
==============================================================================
--- branches/GD_2_4/src/tests/getopt-test-exports.dylan (original)
+++ branches/GD_2_4/src/tests/getopt-test-exports.dylan Tue Mar 6 20:09:28 2007
@@ -28,12 +28,12 @@
define library getopttest
use dylan;
use format-out;
- use parse-arguments;
+ use command-line-parser;
end library;
define module getopttest
use dylan;
use extensions;
use format-out;
- use parse-arguments;
+ use command-line-parser;
end module;
Modified: branches/GD_2_4/src/tools/melange/Makegen
==============================================================================
--- branches/GD_2_4/src/tools/melange/Makegen (original)
+++ branches/GD_2_4/src/tools/melange/Makegen Tue Mar 6 20:09:28 2007
@@ -8,7 +8,12 @@
. ' -L../../common/standard-io'
. ' -L../../common/print'
. ' -L../../common/format'
- . ' -L../../common/getopt'
+ . ' -L../../common/threads'
+ . ' -L../../d2c/runtime/random'
+ . ' -L../../common/common-dylan'
+ . ' -L../../common/format-out'
+ . ' -L../../common/io'
+ . ' -L../../common/command-line-parser'
. ' -L.';
if ($features{'compiled_for_win32'}) {
Modified: branches/GD_2_4/src/tools/melange/exports.dylan
==============================================================================
--- branches/GD_2_4/src/tools/melange/exports.dylan (original)
+++ branches/GD_2_4/src/tools/melange/exports.dylan Tue Mar 6 20:09:28 2007
@@ -87,7 +87,7 @@
use streams;
use standard-io;
use format;
- use parse-arguments;
+ use command-line-parser;
use melange-c;
export
name-mappers;
@@ -181,7 +181,7 @@
use standard-io;
// From parse-arguments
- use parse-arguments;
+ use command-line-parser;
// local packages
use int-lexer;
Modified: branches/GD_2_4/src/tools/pidgin/src/Makegen
==============================================================================
--- branches/GD_2_4/src/tools/pidgin/src/Makegen (original)
+++ branches/GD_2_4/src/tools/pidgin/src/Makegen Tue Mar 6 20:09:28 2007
@@ -4,9 +4,8 @@
. ' -L../../../common/print'
. ' -L../../../common/format'
. ' -L../../../common/standard-io'
- . ' -L../../../common/table-ext'
- . ' -L../../../common/getopt'
. ' -L.'
+ . ' -L../../../common/table-ext'
. ' -L../../../common/collection-extensions'
. ' -L../../../common/string-ext'
. ' -L../../../common/regular-expressions'
@@ -14,7 +13,8 @@
. ' -L../../../d2c/runtime/random'
. ' -L../../../common/common-dylan'
. ' -L../../../common/format-out'
- . ' -L../../../common/io';
+ . ' -L../../../common/io'
+ . ' -L../../../common/command-line-parser';
&emit_library_rule('parser-utilities', '$(BUILDROOT)/force.timestamp', '',
'compile', 'install');
Modified: branches/GD_2_4/src/tools/pidgin/src/ansi-c-test-exports.dylan
==============================================================================
--- branches/GD_2_4/src/tools/pidgin/src/ansi-c-test-exports.dylan (original)
+++ branches/GD_2_4/src/tools/pidgin/src/ansi-c-test-exports.dylan Tue Mar 6 20:09:28 2007
@@ -5,7 +5,7 @@
use streams;
use format;
use standard-io;
- use parse-arguments;
+ use command-line-parser;
use melange-support;
use parser-utilities;
@@ -21,7 +21,7 @@
use streams;
use format;
use standard-io;
- use parse-arguments;
+ use command-line-parser;
use melange-support, import: {call-out};
use parse-conditions;
Modified: branches/GD_2_4/src/tools/pidgin/src/pidgin-exports.dylan
==============================================================================
--- branches/GD_2_4/src/tools/pidgin/src/pidgin-exports.dylan (original)
+++ branches/GD_2_4/src/tools/pidgin/src/pidgin-exports.dylan Tue Mar 6 20:09:28 2007
@@ -9,7 +9,7 @@
use format;
use standard-io;
use string-extensions;
- use parse-arguments;
+ use command-line-parser;
use parser-utilities;
use ansi-c;
use c-parser;
@@ -24,7 +24,7 @@
use piped-exec;
use format;
use standard-io;
- use parse-arguments;
+ use command-line-parser;
use substring-search;
use subseq;
use parse-conditions;
More information about the chatter
mailing list