[Rdkit-devel] RDKit cartridge & PostgreSQL 9.1 Beta
Open-Source Cheminformatics and Machine Learning
Brought to you by:
glandrum
|
From: Adrian S. <am...@ca...> - 2011-05-12 15:04:08
|
Hi Greg, After porting my extensions to the new PostgreSQL extension system, I tried to do the same with the RDKit cartridge. Changing the Makefile and adding a .control file was pretty easy but apparently some of the internal PostgreSQL functions related to GUC have changed: guc.c: In function ‘initRDKitGUC’: guc.c:84:28: warning: passing argument 10 of ‘DefineCustomRealVariable’ from incompatible pointer type /usr/include/postgresql/9.1/server/utils/guc.h:257:13: note: expected ‘GucRealCheckHook’ but argument is of type ‘bool (*)(double, bool, enum GucSource)’ guc.c:84:28: error: too few arguments to function ‘DefineCustomRealVariable’ /usr/include/postgresql/9.1/server/utils/guc.h:257:13: note: declared here guc.c:98:28: warning: passing argument 10 of ‘DefineCustomRealVariable’ from incompatible pointer type /usr/include/postgresql/9.1/server/utils/guc.h:257:13: note: expected ‘GucRealCheckHook’ but argument is of type ‘bool (*)(double, bool, enum GucSource)’ guc.c:98:28: error: too few arguments to function ‘DefineCustomRealVariable’ /usr/include/postgresql/9.1/server/utils/guc.h:257:13: note: declared here make: *** [guc.o] Error 1 Adrian |