Thread: Problems in compilation of Sample1

Problems in compilation of Sample1

From
José López Requena
Date:
Hi everybody!,I am tryng to compile the Sample Program 1 that comes with
the programmer's guide of PostgreSQL documentation. I've copied the
developement librarys to /usr/lib and the include files to /usr/include.
When I type gcc -o sample1 sample1.c -lecpg -lpq the compiler tells me:

/usr/lib/libecpg.so:undefined reference to 'crypt'

can you help me about the meaning of this error message.

Thanks!


Re: [INTERFACES] Problems in compilation of Sample1

From
"Randall W. Barrett"
Date:
Jose,

add -lcrypt to the end of your compiler directives, i.e.

gcc -o sample1 sample1.c -lecpg -lpq -lcrypt


    Randy Barrett

On Sat, 9 Jan 1999, [iso-8859-1] Jos�[iso-8859-1]  L�pez  Requena wrote:

> Hi everybody!,I am tryng to compile the Sample Program 1 that comes with
> the programmer's guide of PostgreSQL documentation. I've copied the
> developement librarys to /usr/lib and the include files to /usr/include.
> When I type gcc -o sample1 sample1.c -lecpg -lpq the compiler tells me:
>
> /usr/lib/libecpg.so:undefined reference to 'crypt'
>
> can you help me about the meaning of this error message.
>
> Thanks!
>
>
>