Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] [encap] SDK Beta; title bug removed; small trick

From: rebol::meurrens::org at: 16-May-2003 9:55

Hello, If you purchased the SDK before 15-May-2003 , you found a text file reporting a small bug. It was impossible to compile if a Title was specified in your ENCAP section REBOL [ Title: "Test & demo of REBOL encryption functionnalities" ENCAP: [ quiet no-window ;;;; Title "Test & demo of REBOL encryption functionnalities" ;;; BUGGY: DO NOT USE ] ] As of last night (version >= 15-May-2003), this bug is removed and you mail now compile for Win32 with a title E.g. http://rebol.mksa.net/win/test-crypto.exe was sucessfully compiled. Thanks to Carl and Cindy... However, mind a small trick. If you are like me (lazzy ???) you will simply cut and paste your REBOL Title line into your ENCAP definition: REBOL [ Title: "Test & demo of REBOL encryption functionnalities" ENCAP: [ quiet no-window Title: "Test & demo of REBOL encryption functionnalities" ] ] This will crash the encapsulation program ... Why ??? The subtil reason (pointed out to me by Cindy S.) is the ":" after Title The correct code must looks like : REBOL [ Author: "Me" Title: "Test & demo of REBOL encryption functionnalities" ENCAP: [ quiet no-window Title "Test & demo of REBOL encryption functionnalities" ] ] HTH ... </marc> Prof. Ir Marc Meurrens, Brussels (be) TEL: +32 (0)2 537 2812 FAX: +32 (0)2 537 7645 EMAIL: [marc--meurrens--org] URL: http://www.meurrens.org/ REB: http://rebol.mksa.net/ PGPKEY: http://www.meurrens.org/pgp/ Please don't mail me attached files, instead, use my 'exchange area' : EXCHANGE AREA: http://www.meurrens.org/exchange/ (HTTP/FTP upload/download of temporary/persistent files)