Обсуждение: ODBC build broken on Windows with commit

Поиск
Список
Период
Сортировка

ODBC build broken on Windows with commit

От
Michael Paquier
Дата:
Hi all,

pgodbc build is currently failing on Windows platforms because of
commit 804cd10 pushed yesterday:
http://git.postgresql.org/gitweb/?p=psqlodbc.git;a=commitdiff;h=804cd103308765c650c35951fc11183127cfb677

connection.obj : error LNK2019: unresolved external symbol CC_Copy
referenced in function PgDtc_isolate
.\x64\psqlodbc35w.dll : fatal error LNK1120: 1 unresolved externals
NMAKE : fatal error U1077:
'D:$BUILD\win32\winsdk-7.0.7600\VC\bin\amd64\link.exe' : return code
'0x460'

It looks that it is not that much a good idea to wrap CC_Copy with
CLEANUP_CONN_BEFORE_ISOLATION on Windows platforms...

Regards,
--
Michael


Re: ODBC build broken on Windows with commit

От
Michael Paquier
Дата:
I forgot to add the commit number in $subject, but it is obvious that
it is 804cd10.
Sorry for that :)
--
Michael


Re: ODBC build broken on Windows with commit

От
Heikki Linnakangas
Дата:
On 20.08.2013 02:36, Michael Paquier wrote:
> Hi all,
>
> pgodbc build is currently failing on Windows platforms because of
> commit 804cd10 pushed yesterday:
> http://git.postgresql.org/gitweb/?p=psqlodbc.git;a=commitdiff;h=804cd103308765c650c35951fc11183127cfb677
>
> connection.obj : error LNK2019: unresolved external symbol CC_Copy
> referenced in function PgDtc_isolate
> .\x64\psqlodbc35w.dll : fatal error LNK1120: 1 unresolved externals
> NMAKE : fatal error U1077:
> 'D:$BUILD\win32\winsdk-7.0.7600\VC\bin\amd64\link.exe' : return code
> '0x460'
>
> It looks that it is not that much a good idea to wrap CC_Copy with
> CLEANUP_CONN_BEFORE_ISOLATION on Windows platforms...

Sorry, my bad. Fixed.

- Heikki