On 12/09/2007 20:23, Bram Moolenaar wrote:
>
> Jeff Lanzarotta wrote:
>
>> I am not sure if this is the best place to do this, but I did:
>>
>> Index: if_cscope.h
>>
>> ===================================================================
>>
>> --- if_cscope.h (revision 513)
>>
>> +++ if_cscope.h (working copy)
>>
>> @@ -93,6 +93,9 @@
>>
>> Print
>> } mcmd_e;
>>
>> +#ifdef __BORLANDC__
>> + typedef long intptr_t;
>> +#endif
>>
>> #endif /* FEAT_CSCOPE */
>
> Using Google Code Search I found a good hint in the cmake sources. Try
> this patch:
>
> *** ../vim-7.1.100/src/if_cscope.c Thu Sep 6 17:38:06 2007
> --- src/if_cscope.c Wed Sep 12 20:32:17 2007
> ***************
> *** 726,731 ****
> --- 726,740 ----
> HANDLE stdin_rd, stdout_rd;
> HANDLE stdout_wr, stdin_wr;
> BOOL created;
> + # ifdef __BORLANDC__
> + # define OPEN_OH_ARGTYPE long
> + # else
> + # if (_MSC_VER >= 1300)
> + # define OPEN_OH_ARGTYPE intptr_t
> + # else
> + # define OPEN_OH_ARGTYPE long
> + # endif
> + # endif
> #endif
>
> #if defined(UNIX)
> ***************
> *** 909,918 ****
> CloseHandle(pi.hThread);
>
> /* TODO - tidy up after failure to create files on pipe handles. */
> ! if (((fd = _open_osfhandle((intptr_t)stdin_wr, _O_TEXT|_O_APPEND)) < 0)
> || ((csinfo[i].to_fp = _fdopen(fd, "w")) == NULL))
> PERROR(_("cs_create_connection: fdopen for to_fp failed"));
> ! if (((fd = _open_osfhandle((intptr_t)stdout_rd, _O_TEXT|_O_RDONLY)) < 0)
> || ((csinfo[i].fr_fp = _fdopen(fd, "r")) == NULL))
> PERROR(_("cs_create_connection: fdopen for fr_fp failed"));
>
> --- 918,929 ----
> CloseHandle(pi.hThread);
>
> /* TODO - tidy up after failure to create files on pipe handles. */
> ! if (((fd = _open_osfhandle((OPEN_OH_ARGTYPE)stdin_wr,
> ! _O_TEXT|_O_APPEND)) < 0)
> || ((csinfo[i].to_fp = _fdopen(fd, "w")) == NULL))
> PERROR(_("cs_create_connection: fdopen for to_fp failed"));
> ! if (((fd = _open_osfhandle((OPEN_OH_ARGTYPE)stdout_rd,
> ! _O_TEXT|_O_RDONLY)) < 0)
> || ((csinfo[i].fr_fp = _fdopen(fd, "r")) == NULL))
> PERROR(_("cs_create_connection: fdopen for fr_fp failed"));
>
Better late then never - I was away last week. I noted in my original
patch I hadn't tested with BorlandC. This looks like the one to go with
- oh, I see we have. Fine by me.
TTFN
Mike
--
What's brown and sticky? A stick!
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---