[REBOL] Re: Mac OSX experimental
From: dockimbel:free at: 15-Feb-2001 16:32
Hi Will
Will Arp wrote:
> Hi 8)
> Please if you have time to repost the last Mac OSX exper. core build
> I would really aprreciate 8))
> That mysql driver is so cool but doesn't work with core 2.2.0.2.4
My scheme use the pair! datatype for the encryption functions. (pair! type
was included in /Core 2.3)
Here's a hack to make it work with /Core 2.2 :
- Edit the %mysql-protocol.r file
- Find the 'scrambler object.
- Replace it with the following code :
scrambler: make object! [
crypt-v10: crypt-v9: func [data [string!] seed [string!]][""]
]
- Save your file.
Then the mysql driver should works well, but you won't be allowed to use
passwords. So you'll have to make a user with no password to log into the
server. (If you're using mysqld on localhost, it shouldn't be a problem.)
Now you can wait until the next OSX release without too much frustration. ;)
I've made a small test with /Core2.2 and it freezes sometimes on the 'copy
command. Weird behaviour...(will see if i can find a quick fix).
HTH,
DocKimbel.