Comment 1 for bug 834178

Revision history for this message
Martin Pitt (pitti) wrote :

This seems to have collided with the postgresql 9.1 update from yesterday. libpq's API did not change that much, but if LibO is using some of the /usr/include/postgresql/internal/* headers, it might need some adaptions for

-extern char *first_path_separator(const char *pathlist);
+extern char *first_path_var_separator(const char *pathlist);

-extern int pg_get_encoding_from_locale(const char *ctype);
+extern int pg_get_encoding_from_locale(const char *ctype, bool write_message);

-extern int SetClientEncoding(int encoding, bool doit);
+extern int PrepareClientEncoding(int encoding);
+extern int SetClientEncoding(int encoding);

-extern void copydir(char *fromdir, char *todir, bool recurse);

These are the only API changes I can see.