Re: [GENERAL] Conflicting function name in dynamically-loaded shared library

2015-01-29 Thread Adam Mackler
On Wed, Jan 28, 2015 at 11:23:15AM +, Albe Laurenz wrote: > If you are on Linux, you could try the following patch: > > http://www.postgresql.org/message-id/ca+csw_tpdygnzcyw0s4ou0mtuouhz9pc7mrbpxvd-3zbiwn...@mail.gmail.com > > ... > Renaming one of the functions seems like the best thing to

Re: [GENERAL] Conflicting function name in dynamically-loaded shared library

2015-01-28 Thread Albe Laurenz
Adam Mackler wrote: > I am wanting to define some functions as described in section 35.9 of > the manual, "C-Language Functions." I am compiling pre-existing files > of c-code from another project into object files, and then linking > those object files into a shared library along with my own func

[GENERAL] Conflicting function name in dynamically-loaded shared library

2015-01-27 Thread Adam Mackler
Hi: I am wanting to define some functions as described in section 35.9 of the manual, "C-Language Functions." I am compiling pre-existing files of c-code from another project into object files, and then linking those object files into a shared library along with my own functions that follow the p