Re: Compilate problems - Mailing list pgsql-general

From Alvaro Herrera
Subject Re: Compilate problems
Date
Msg-id 20091004172702.GA6193@alvh.no-ip.org
Whole thread Raw
In response to Compilate problems  (Yadisnel Galvez Velazquez <ygalvez@uci.cu>)
List pgsql-general
Yadisnel Galvez Velazquez wrote:
> I am working actually in an replication project. I need a trigger function but when I compile this, the C compilator
returnthe log message: 
>
> # cc -fpic -c main.c

You're missing some -I directives (among other things).  I suggest you
compile this way:

cc $(pg_config --cflags) -I$(pg_config --includedir)/server -c main.c

You need pg_config to be in PATH for this to work.

PS: I suggest you use the pgsql-es-ayuda list for spanish help.  There's
people from @uci.cu there too.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

pgsql-general by date:

Previous
From: Yadisnel Galvez Velazquez
Date:
Subject: Compilate problems
Next
From: David Fetter
Date:
Subject: Re: Compilate problems