undefined reference to crypt

Поиск
Список
Период
Сортировка
От Patrice DUMAS
Тема undefined reference to crypt
Дата
Msg-id 000201be619f$64683d80$5f6cfea9@blneige
обсуждение исходный текст
Ответы Re: [INTERFACES] undefined reference to crypt  (James Thompson <jamest@math.ksu.edu>)
Re: [INTERFACES] undefined reference to crypt  (James Thompson <jamest@math.ksu.edu>)
Список pgsql-interfaces
Hi,

I am discovering PostGreSQL and Linux.
I have a little problem with libpq.


Here is my C program (it's empty!)

/* --------- essai.c -------------------------- */


#include <stdio.h>
#include "/usr/lib/pgsql/include/libpq-fe.h"


int main(void)
{

}

/* ------------------------------------------- */


Here is my makefile:


essai.o: essai.c
gcc -c essai.c
essai:  essai.o
gcc -o essai essai.o -lpq


When I do "make essai", the following error appears:

/usr/lib/libpq.so: undefined reference to crypt.
collect2: ld retruned 1 exit status


I suppose a file/library is missing.
Can you help me?


The postgres' programmer guide refers to several examples in
/src/test/regress.
These samples are not installed with my postgres distribution .
Where can I download them (or other examples?).


Sorry for my poor english and thank you for your answers,

Patrice DUMAS
Ardèche, FRANCE
pdumas@inforoutes-ardeche.fr





В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Byron Nikolaidis
Дата:
Сообщение: Re: Access problems
Следующее
От: James Thompson
Дата:
Сообщение: Re: [INTERFACES] undefined reference to crypt