n't work unless you tell it to use 32 bits!).
> You might try osascript instead.
Yes, although it's usually significantly slower, and slightly more error-prone
(because of the shell interface).
--
Chris Nandor
pu...@pobox.com
http://pudge.net/
360-474-5090
Hi folks,
Just pointing out that this mailing list is not for Mac OS X perl, but for
MacPerl, the app that runs on Mac OS (Classic). There's a separate
mac...@perl.org mailing list for Mac OS X.
http://lists.perl.org/list/macosx.html
--
Chris Nandor
pu...@pobox.com
http://pudge.net/
Hi Mark, try the [EMAIL PROTECTED] list. This is for MacPerl, the
implementation of perl for "Classic" Mac OS.
--
Chris Nandor [EMAIL PROTECTED] http://pudge.net/
Slashdot / SourceForge [EMAIL PROTECTED] http://slashdot.org/
Hi Tom,
The macperl@perl.org list is for MacPerl, an implementation of MacPerl for
Mac OS 7-9. You want [EMAIL PROTECTED], a list for perl on Mac OS X.
Cheers,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Technology Group [EMAIL PROTECTED
This list is for MacPerl, which is a program that runs under Mac OS 7-9,
and the "Classic" environment in Mac OS X. You want the macosx@perl.org
mailing list.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Technology Group [EMAIL
for such a thing? If all you need is a nice UI to run
perl under, try TextWrangler, a free "Lite" version of BBEdit for Mac OS X.
>or is it some more sophisticated approach
>and to have a connection to what is "Inside Macintosh"?
Mac::Carbon is just some of the same
, for the sake of that manpage.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Technology Group [EMAIL PROTECTED] http://ostg.com/
At 8:51 + 2004.12.15, THEARTOFWEB PRODUCTION wrote:
>eureka!
>
>it seems like i've sorted it out!
Great, good work.
>local $SIG{NUM13} = 'IGNORE';
>
>what the hell is $SIG{NUM13} ???
No idea. :)
--
Chris Nandor [EMAIL PROTECTED]
t list seems to have more active participants, so you might be
more likely to get a wider range of possible solutions.
Regards,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Technology Group [EMAIL PROTECTED] http://ostg.com/
At 13:05 +0100 2004.11.13, Bart Lateur wrote:
>But that's not macperl and you're on the wrong list with that kind of
>bigotry.
You got me! :)
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Technology Group [EMAIL PROTECTED] http://ostg.com/
Kinda messy, but
works for me. Thomas Wegner has an XS tutorial, however, which might be
better:
http://usemacperl.esmartweb.com/
Of course, most of us now use Mac OS X, where building is much simpler. :-)
Good luck,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.ne
t = load_osa_script($app, $resid);
# compile and save script if not yet loaded
if (!$script) {
$script = compile_applescript(<save($app, $resid);
}
$script->call(qw[abcd 1234], 'Bourque:Users:pudge:bin:happening');
__END__
Make sure you make a copy of the app to test on firs
it on Mac OS
X, but AppleScript needs Mac paths. I don't need Mac paths in the first
two examples because NewAliasMinimal creates a path-agnostic alias, and
Mac::Glue converts Unix paths to Mac paths for you.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 16:42 +0200 2004.06.09, Martin Buchmann wrote:
>i'm using a macperl script to call some external programs. That was
>working in the past but now i have the problem that MacPerl is just
Have you changed anything recently? Any module versions, or apps that
you're trying to la
ve to modify this main loop to do some
>special testing when symlink is encountered.
Yes, try -l first, and if it is true, then skip the file (or call
readlink() on the file if you want to use some links, but not others,
etc.). That should work.
--
Chris Nandor [EMAIL PROTE
r and file name extraction via foreach , nothing works.
Drag-n-drop will use absolute paths, so you're turning:
HD:foo:bar
Into:
:HD:foo:bar
Which won't work. Three-arg open() is really the best way.
--
Chris Nandor [EMAIL PROTECTED]http:
$file =~ s#^(\s)#:$1#;
And it wouldn't work at the root of the filesystem (if it is an absolute
path and your HD name is " HD", you are out of luck :-). The final option
would be to use sysopen() instead.
Cheers,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
esian filters in Eudora weed them out for me.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
programs, as Interarchy borrowed from
Fetch. To get this to work with Fetch, just drop Fetch onto the "gluemac"
droplet included with MacPerl.
(Password can be handle by Keychain too, so you don't necessarily need to
put in here.)
--
Chris Nandor [EMAIL P
ll Mac OS X apps from MacPerl under Classic, so if some other
application provided an event like do shell script, you could use it. But
do shell script itself is provided by the Standard Additions OSAX, which is
not available to Classic.
--
Chris Nandor [EMAIL PROTECTED]
t I have to convert Mac newlines, such as
AppleScript returns here, to Unix newlines.)
Of course, if this were really on Mac OS X, you should just use backticks
anyway:
[EMAIL PROTECTED] pudge]$ perl -le 'print `cd ~/; ls`'
Applications
Desktop
Documents
Games
Library
MacOS
Movies
Musi
file every time the Mac is booted.
Well, the easiest thing to do is add this to your script, at the top:
use lib 'path:to:MacPerl:folder:lib:';
Or, alternatively, put the app in your MacPerl folder, and put an alias to
it in Startup Items.
--
Chris Nandor
site_perl/5.8.0
/usr/local/lib/perl5/site_perl
.
[EMAIL PROTECTED] lib]$ mv perl5 perl5-mv
[EMAIL PROTECTED] lib]$ perl -le 'print join "\n", @INC'
/usr/local/lib/perl5/5.8.2/darwin
/usr/local/lib/perl5/5.8.2
/usr/local/lib/perl5/site_perl/5.8.2/darwin
/usr/local/lib/perl5/site_perl
,
not the rest.
Summary: I recommend installing Mac-Carbon, adding "use MacPerl;" to the
script, and using it as-is. If you don't want to install all of Mac-Carbon,
Mac-AppleScript is your best bet. Stay away from osascript.
Cheers,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 14:33 -0800 2004.01.14, Bill Becker wrote:
>It is stored as a runtime (the icon is a pyramid).
Yes, runtimes do not contain module files. Search the archives for
RuntimeBuilder.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Netw
data
there in the variable. It's a Handle object, so you can get the data with
$foo->get.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 15:45 -0800 2004.01.02, Bill Becker wrote:
>I don't have that exact directory structure, SpeechRecognition is
>there, but nothing further than a single library having the same
>name...
In the current MacPerl, it should be in :eg:Mac:SpeechRecognition:.
--
cle precedes the module though; it shows how to do the low-level
stuff that the module does for you.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
f, $pt, siBestQuality);
SndPlay(undef, $foo);
Is that what you want? You want voice data, or do you want the words
someone is saying, such as with speech recognition? The latter is a lot
more difficult.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open
D name).
>
>This doesn't seem to work in MacPerl 5.6.1r2.
It was a bug/misbehavior.
If you want a list of all volumes, use the MacPerl::Volumes() function.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
llo"}
I am not sure what form you want this in. You want to tell a MacPerl
script how to do this from another MacPerl script? If so, that can be
hard, since MacPerl can only run one script at a time. Do you want
examples with C? I am not sure the nature of it all.
--
Chris Nandor
place, let alone the second or third.
>My mileage doesn't vary on this issue, in case
>anyone fancies biting my head off :-)
Mine neither. No biting.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
ard version of perl that runs on Mac OS X. Thanks,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
MacPerl, a few years ago. It's
not been kept up that I know of, but perhaps it will work for you, or get
you started.
http://www.macperl.com/depts/Tutorials/
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL
rom BBEdit. But your mileage
very well may vary.
Cheers,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 10:57 -0700 2003.09.11, Bill Becker wrote:
>It is not rediculous to expect a pseudo-random number generator to
>behave differently! I believe that is, indeed what rand() is supposed
>to be. You go in with a consistent seed across all platforms, it
>should return consistent results across same.
>
At 15:02 -0400 2003.08.27, Dwayne C Ayers wrote:
>Is there a way to access the serial port in the new version?
I think you can use the Mac::Serial module, on the CPAN. It loads an XCMD
or somesuch with LoadExternals(), which, I believe, does work.
--
Chris Nandor [EM
t version of MacPerl. See the notes in
macperldelta in the MacPerl 5.6.1 release for more information.
If you need CommConnect.pl, consider using MacPerl 5.2.0r4. You can have
both versions of MacPerl installed simultaneously.
--
Chris Nandor [EMAIL PROTECTED]http://pud
every mail from this list has unsubscribe info in the mail headers,
like so:
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
List-Post: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMA
build instructions on http://dev.macperl.org/
say how to do it, and where everything is (and Thomas Wegner's XS tutorial
gives the rest of the information you should need for XS stuff).
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 11:32 +0200 2003.05.29, Thomas Wegner wrote:
>Fortunately, I was able to build Digest-SHA1-2.02 for MacPerl 5.6.1
>on Mac OS Classic :).
Excellent. Thanks, Thomas!
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PRO
included in MacPerl 5.6.1r2, and realistically expect them to all
>work properly,
No. They are not binary compatible with 5.6.1.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
)?
And I am glad it is working well for you. I am nearly done porting
Mac::Glue to Mac OS X, hopefully for release in a few weeks.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
st->exec($command, ...);
I am not sure what mpost's AppleScript dictionary looks like. Just follow
the instructions for Mac::Glue (it comes with MacPerl 5.6.1) for running
gluedialect and gluescriptadds, and then drop apps on gluemac (like the
Finder and mpost). If you have trouble figuring out
d by device
Not a directory
$^E works similarly.
A better option might b e $@, which can be set to arbitrary error values.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
Is there any way you can trim down the example to 10 lines or so, that
shows the problem?
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 14:47 -0800 2003.03.26, Nicholas G. Thornton wrote:
>Still more from my trials and tribulations:
>
>Trying to go about this via MacPerl::DoAppleScript() returns the error
>Operation
>not supported on socket. Any idea how to get around this?
Can you give an example that shows t
e [EMAIL PROTECTED] list
instead.
Thanks,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 01:52 -0800 2003.03.26, Nicholas G. Thornton wrote:
>I just noticed there's a macperl-toolbox mailing list that I should have been
>posting to. Sorry for any inconvenience.
No worries, either list is fine.
--
Chris Nandor [EMAIL PROTECTED]http://pudg
t that
it accepts Mac OS X/POSIX paths instead of Mac OS/HFS paths.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
number. Since
>all the
>documentation I've found is directed at C/C++ folks (of which I'm not one) I'm
>not entirely sure how to proceed. As always, any help is appreciated.
Not sure, but try using fileno() after opening the file. See the perl docs
for more details.
--
Chri
27;t the faintest idea
>what
>this means or how to correct it since what makes a valid fileSpec is never
>discussed anywhere.
It means the file path isn't correct, basically. Doublecheck it.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Dev
o Mac OS X.
Also note the new address of my Perl modules:
http://projects.pudge.net/
And I am still entertaining volunteer efforts for tests for Mac::Carbon.
:) Contact me if you want to help.
Enjoy,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
GD changed substantially over the years, and I did not include it with
MacPerl 5.6.1. As far as I can recall, there is no build available for
MacPerl 5.6.1, though someone could build it.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network
ted on Mac OS X. These are fairly clearly marked in Sound.xs.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 17:29 -0800 2003.02.26, Nicholas G. Thornton wrote:
>I'm looking for a module that'll let me play AIFF files from (Mac)Perl. I've
>had no luck finding anything searching for "aiff" on CPAN
Mac::Sound and Mac::Movies can, I believe.
--
Chris Nandor
ent MP3::Info to fail on some of its files; this is
going to be fixed in the next version, coming soon).
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 19:20 -0500 2003.02.06, Ronald J Kimball wrote:
>It's part of the standard Perl installation. However, you can always find
>the Perl documentation (for various versions of Perl) at
>http://www.perldoc.com/
And, of course, in Shuck. :-)
--
Chris Nandor [E
$catinfo->ioFlXFndrInfo($fxinfo); # save back to catinfo
FSpSetCatInfo($file, $catinfo); # save back to file
}
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 13:13 +0900 2003.01.17, Nobumi Iyanaga wrote:
>On Thursday, January 16, 2003, at 09:37 AM, Chris Nandor wrote:
>
>> The Image::Size module on the CPAN should help you.
>>
>
>Thank you for your reply. Yes, it worked -- although I had to tweak
>somehow the source: re
The Image::Size module on the CPAN should help you.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
I partially restored it with data over a year old. Sigh * 2.
I have most of the data there backed up, but not that.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
p.plx line 418.
>
> <http://dev.macperl.org/cgi-bin/mmp.plx>
Sigh ... the files are not there. I did not delete them, I believe. I
have not been on the machine in some time, it worked the last time I saw
it. I'll see if maybe the SF.net people can restore it, I hope so.
--
Ch
At 12:28 -0800 2002.12.09, Richard Cook wrote:
>so, this is a very intermittent problem ... can anyone here see the way
>to make it always happen?
Probably not, and this is why it is so hard to fix. :)
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open
revious to current, i.e., 5.6.1r1?
And I do know that there have been problems with the output window shifting
to the right in some circumstances in older versions (including MacPerl
5.2.0r4), and I don't recall that code being modified in my time with it.
There are more-or-less tenative plans
out value in the web based
>installer?
I don't think that's the problem, I think the web server you're connected
to is the problem. By now, the CPAN mirrors should be working, try those.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source
>installation.
You should be able to choose the installation folder if you've changed the
name of yours; I suppose in the future, though, I could have it look for
your MacPerl folder if you've moved it. Just select Choose Folder from the
popup menu on the initial screen.
--
Chris Na
gt;Are the "t" files included in this release?
Yes. Some of them require Test::More, which is not included, but can be
installed via the normal means. It will be included in MacPerl 5.8, I just
didn't feel like including it in 5.6. :)
--
Chris Nandor [EMAIL
omas Wegner for his patches and work on
Shuck; thanks to all who helped report and track down various bugs.
Thanks, and have fun,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
ules in that bundle; install
each one individually, those that apply. For Bundle::CPAN, skip
Digest::MD5, Term::ReadKey, Data::Dumper, and Compress::Zlib.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
an older version; it should
work fine for you, however.
>3. Am I better off just skipping the use of this Bundle all together
In this case, since it tries to install a module it cannot install, yes.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 20:49 +0100 2002.11.13, Detlef Lindenthal wrote:
>## Mind the $^O; and save lines!!!(-:(-: (-:
>print "$^O $1.$2.$3";
The problem is that "darwin 10.2.2" isn't quite what I would want, and is
inaccurate, anyway. :-)
--
Chris Nandor
R
The Mac Toolbox modules were written by Matthias Neeracher
<[EMAIL PROTECTED]>. They are currently maintained by Chris Nandor
<[EMAIL PROTECTED]>.
VERSION
$Id: README,v 1.1 2002/11/13 02:04:50 pudge Exp $
--
Chris Nandor [EMAIL PROTECTED]htt
printf "%s.%d.%d", join('', @vers[-4, -3]), @vers[-2, -1];
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
ork! I
Note that AppleTalk is no longer supported by MacPerl, as of 5.6.1r1.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
There are macperl-anyperl and macosx lists at perl.org.
http://lists.perl.org/.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 09:38 -0700 2002.10.15, Richard Cook wrote:
>The only thing that causes it to stop is typing "command-period".
>Actually, I think that simply "com-q" will also stop it.
OK, thanks much for your patience, and your help. :)
--
Chris Nandor
At 09:16 -0700 2002.10.15, Richard Cook wrote:
>Chris Nandor wrote:
>>
>> At 21:55 -0700 2002.10.14, Richard Cook wrote:
>> >MacPerl is doing the "cursor spin" trick right now in the background. I
>> >just launched it by 2-clicking on an existing docu
g now.
What happens if you click on a menu, or create a new window with cmd-N?
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
hat sometimes the file didn't
open, and the cursor was spinning.
Does either of those two behaviors occur when MacPerl is already running?
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
c.)
are you running?
What menus show in MacPerl (e.g., File, Edit, etc.) during this?
At 15:08 -0700 2002.10.10, Richard Cook wrote:
>A related problem seems to be that sometimes when a script is
>double-clicked in the finder, MacPerl will launch, but the file doesn't open.
How
lags = shift;
return (($flags & fInvisible) ? $flags ^ fInvisible : 0)
}
sub make_invisible { # make flags invisible
my $flags = shift;
return (($flags & fInvisible) ? 0 : $flags | fInvisible)
}
__END__
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
com, meant for perl on Mac OS X,
in MacPerl under Classic (the article implied that perl for Mac OS X was
"full perl" compared to MacPerl, so I found it interesting that all their
code ran fine in MacPerl :-). Yesterday I also used Mac::Glue on MacPerl
under Classic to
with Classic, you
need Mac OS v9, I think 9.1 or greater.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
my $finder = new Mac::Glue 'Finder';
# optional :-)
my $app_path = $Mac::MoreFiles::Application{$app_sign};
my $file = $finder->obj(file => $file_path);
my $app = $finder->obj(file => $app_path);
$finder->open($file, using => $app
gt; print "\n$counter OK: $url\n";
> } else {
> print "\n$counter ERROR: $msg for $url\n";
> }
>}
>
>
>__END__
You do not ever reset $msg each time in the loop. Try putting 'my $msg =
"";' inside the loop, not outside.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
s, and Google's news search, have been
picking them up.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
to control apps on other
machines over TCP/IP.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
purchase Mac OS separately.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
ith Mac
OS X. You can get Mac OS separately. You won't be able to boot into Mac
OS on new machines. You will be able to run Classic on new machines, if
you also have/purchase Mac OS separately.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
e named "moon", when what
you are offering for export, and want, is a scalar variable named "$moon".
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
.2
for Classic needs 1.8.3. Axel, can you check that too?
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 18:34 +0200 2002.09.11, Axel Rose wrote:
>I boot into 10.2 and double click the droplet.
Is MacPerl running before you open the droplet? What about Classic itself?
And did you run the same test in 9.2.2?
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
O
work perfectly for me just fine on a TiBook G4/667 with both
Mac OS 9.2.2 and Mac OS X 10.2. What version of MacPerl?
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
At 17:18 +0200 2002.09.11, Axel Rose wrote:
>Um 11:00 Uhr -0400 11.09.2002, schrieb Chris Nandor:
>>What downloader program?
>
>We had some disussion about this program before. Essentially it
>gets files through ftp.
>
>I need some more time to isolate the problem but pr
not sure. Thanks,
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
but I've heard no complaints about
PPC.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
ht have to hit ctrl-D
instead of return for picking from lists.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.net/
Open Source Development Network[EMAIL PROTECTED] http://osdn.com/
are two ways to do it. One is to use the CFM68K build of MacPerl,
and copy the shared libraries in :lib:MacCFM68K:. The other is to use the
BigMacPerl build, which has the libraries like Mac::Files linked statically.
--
Chris Nandor [EMAIL PROTECTED]http://pudge.n
oading -- anything requiring DynaLoader -- does not work,
currently, with 68K Macs. That did work with MacPerl 5.2.0r4, which is
still available, via the CFM68K build. But CFM68K is not currently
supported in current versions of MacPerl.
--
Chris Nandor [EMAIL PROTECTED]http
1 - 100 of 413 matches
Mail list logo