Well, I just did a successful initial port to z/OS release 1.13 UNIX . I
don't know how long I will have access to the system that I did this on. It
likely depends on how long the person who rents it from IBM keeps it. But I
would be willing to do testing as I have time from doing my regular job.

 I was able to run the "sqlite3" command from a shell prompt and "do
things". <grin/>.  All I did was:

diff -bc sqlite-3071700/sqlite3.c sqlite-autoconf-3071700/sqlite3.c
*** sqlite-3071700/sqlite3.c.2013-08-08 14:41:27.000000000 -0500
--- sqlite-autoconf-3071700/sqlite3.c.2013-05-20 00:56:36.000000000 -0500
***************
*** 13201,13209 ****
    ** linear search is adequate.  No need for a binary search. */
    for(i=0; i<ArraySize(azCompileOpt); i++){
      if( sqlite3StrNICmp(zOptName, azCompileOpt[i], n)==0
- #ifdef SQLITE_ASCII
       && sqlite3CtypeMap[(unsigned char)azCompileOpt[i][n]]==0
- #endif
      ){
        return 1;
      }
--- 13201,13207 ----
***************
*** 23015,23023 ****
  #include <errno.h>
  #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0
  #include <sys/mman.h>
- #ifndef MAP_FAILED
-   #define MAP_FAILED ((void *) -1L)
- #endif
  #endif


On Mon, Aug 12, 2013 at 10:21 PM, Richard Hipp <d...@sqlite.org> wrote:

> On Mon, Aug 12, 2013 at 10:43 PM, John McKown
> <john.archie.mck...@gmail.com>wrote:
>
> > I read the web site, but just didn't see a way to submit a bug-fix type
> > patch. The patch only affects an EBCDIC based system. Which is what I am
> > running on at work. I was very impressed that the code was already EBCDIC
> > aware.
> >
>
> Please post your suggested changes on this mailing list.
>
> We don't have an EBCDIC machine on which to test SQLite.  SQLite worked
> with EBCDIC at one point in the past, but since we are unable to test our
> changes, I'm not surprised it is now broken.
>
> --
> D. Richard Hipp
> d...@sqlite.org
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



-- 
As of next week, passwords will be entered in Morse code.

Maranatha! <><
John McKown
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to