Re: Trouble including pg_type.h

From: Albe Laurenz <laurenz(dot)albe(at)wien(dot)gv(dot)at>
To: "'Vilches, Alejandro *EXTERN*'" <alejandro(dot)vilches(at)intel(dot)com>, "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Trouble including pg_type.h
Date: 2015-09-04 09:50:02
Message-ID: A737B7A37273E048B164557ADEF4A58B50FA059D@ntex2010i.host.magwien.gv.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Alejandro Vilches wrote:
> I’m having issues trying to include <catalog/pg_type.h> in my program. With the include paths
> correctly set, the compiler is able to find this file, but the issue is that this file is doing
> #include “catalog/genbki.h” (even though they’re side by side), so the compiler is trying to look for
> “catalog/catalog/genbki.h”.
>
> For me, “pg_type.h” is located in: “/usr/pgsql-9.3/include/server/catalog”. So besides adding
> “/usr/pgsql-9.3/include” to the include path, I’ve also added “/usr/pgsql-9.3/include/server”, and in
> my program I’m doing #include <catalog/pg_type.h>.

Try

#include "catalog/pg_type.h"

What compiler on what platform are you using?

Yours,
Laurenz Albe

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Armand Pirvu (gmail) 2015-09-04 20:03:03 shared_preload_libraries and pg_stat_statements
Previous Message Vilches, Alejandro 2015-09-03 17:35:40 Trouble including pg_type.h