On Mon, 29 Mar 1999 10:51:29 -0500, Amir Karger wrote:
>On Fri, Mar 26, 1999 at 10:55:55PM +0100, Arnd Hanses wrote:
>> Hello all you creative creators,
>
>Hi. I've always wanted to be an Entwicklung. Is that something like
>Tolkien's Ents?
If you want...
>> there is a small bug in reLyX.cmd of 1.0.1 release version:
>
>[problem snipped]
>
>Jean-Marc, help! Is this a configure issue?
No, just a good old typo, no magic here:
'extproc' in Rexxish is '#!' in Bourneish. As usual you have to write
five times as much...
Yes, Rexx was written 1) in England 2) for a Mainframe system 3) by
IBM: What else would you expect... :)
extproc perl.exe -Sw
#!perl
# This file is part of reLyX, copyright (c) 1998 Amir Karger
# You are free to use and modify this code under the terms of
# the GNU General Public Licence version 2 or later.
############################# reLyX wrapper
use strict;
use File::Basename;
# $^W = 1; # same as 'perl -w'
shold be the same as:
extproc perl.exe -S
#!perl
# This file is part of reLyX, copyright (c) 1998 Amir Karger
# You are free to use and modify this code under the terms of
# the GNU General Public Licence version 2 or later.
############################# reLyX wrapper
use strict;
use File::Basename;
$^W = 1; # same as 'perl -w'
Greetings,
Arnd