2017-02-20 4 views
0

Récemment, un projet sur lequel je travaille a été requred pour y ajouter le support postgresql. Le projet est écrit en C (son open source Janus gateway).référence non définie à `PQconnectdb '

J'ai suivi ces étapes pour installer le postgress et libps-dev.

sudo apt-get install postgresql 
sudo apt-get install libpq-dev 
$ sudo -u postgres psql postgres 
psql (9.3.9) 
Type "help" for help. 

postgres=# \password postgres 

Puis dans mon en-tête fichier (connect.h):

#include <postgresql/libpq-fe.h> 
#include "debug.h" 

/*! \brief Connect to postgresql database 
* If successfull, returns PGconn type 
* If not exits the program 
* @param[in] postgres connection params, ex. username, db, host, etc. 
*/ 
PGconn *connect_to_database(gchar connection_params); 

/*! \brief Closes connection to database 
* @param[in] PGconn instance 
*/ 
PGconn *close_connection_to_database(PGconn *pgconn); 

Et mon fichier .c (connect.c):

/*! \file db.c 
* \author ... 
* \copyright GNU General Public License v3 
* \brief Event handler notifications (headers) 
* \details This file contains methods for safely creating databse connection 
* to postgresql and then closing it. 
* 
* \ingroup db 
* \ref db 
*/ 

#include "./connect.h" 

PGconn *connect_to_database(gchar connection_params) { 
    JANUS_LOG(LOG_WARN, "TESTINGSSS \n\n\n\n"); 


    const char test_connect = "testings"; 

    PGconn *conn = PQconnectdb(test_connect); 

    return conn; 
} 

Sur make i get:

[email protected] ~/Projects/janus-gateway $ make 
make all-recursive 
make[1]: Entering directory '/home/todns/Projects/janus-gateway' 
Making all in html 
make[2]: Entering directory '/home/todns/Projects/janus-gateway/html' 
make[2]: Nothing to be done for 'all'. 
make[2]: Leaving directory '/home/todns/Projects/janus-gateway/html' 
make[2]: Entering directory '/home/todns/Projects/janus-gateway' 
    CCLD  janus 
db/janus-connect.o: In function `connect_to_database': 
/home/todns/Projects/janus-gateway/db/connect.c:20: undefined reference to `PQconnectdb' 
collect2: error: ld returned 1 exit status 
Makefile:1195: recipe for target 'janus' failed 
make[2]: *** [janus] Error 1 
make[2]: Leaving directory '/home/todns/Projects/janus-gateway' 
Makefile:1914: recipe for target 'all-recursive' failed 
make[1]: *** [all-recursive] Error 1 
make[1]: Leaving directory '/home/todns/Projects/janus-gateway' 
Makefile:905: recipe for target 'all' failed 
make: *** [all] Error 2 

Le problème est:Mon instinct me dit que cela a quelque chose à voir avec le fichier Makefile.am, mais je ne sais pas vraiment quoi changer là-bas. Donc la question est: Qu'est-ce que je manque dans cette configuration? Comment puis-je lier la bibliothèque postgres-dev avec mon code C?

Merci!

EDIT: J'ai oublié de mentionner, je cours ceci sur la machine virtuelle Linux Mint (la machine principale est un macbook pro).

+0

Est-ce le Makefile dans le même répertoire que '#include" ./connect.h "'? Probablement pas. Peut-être que vous devez changer '#include" ./connect.h "' au bon chemin. Ou, changez les répertoires '-I'. –

+0

@FiddlingBits 'connect.c' et' connect.h' se trouvent dans le même répertoire, appelé db. – IvRRimUm

+0

@FiddlingBits Comment puis-je changer les répertoires '-I'? Où le faire et comment? – IvRRimUm

Répondre

1

Compris.

Annexé -L/.... -psql-AM_CFLAGS Makefile.am

Heres la gamme complète:

AM_CFLAGS += -fstack-protector-all -g -ggdb -fPIC -rdynamic -pthread -L/usr/include/postgresql/libpq -lpq 

Vous pouvez consulter janus-passerelle Makefile.am pour voir comment mon Makefile.am regarde sans -psql