Обсуждение: plperl fails to compile PostgreSQL v8.2.6

Поиск
Список
Период
Сортировка

plperl fails to compile PostgreSQL v8.2.6

От
Fred Stevens
Дата:
when compiling plperl on SuSE 10.2 the following error occurs:

gcc -O2 -g -m32 -march=i586 -mtune=i686 -fmessage-length=0
-D_FORTIFY_SOURCE=2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
-Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fpic
-I. -I../../../src/include -D_GNU_SOURCE
-I/usr/lib/perl5/5.8.8/i586-linux-thread-multi/CORE -c -o plperl.o plperl.c
plperl.c:26:28: error: utils/fmgroids.h: No such file or directory
plperl.c: In function ‘plperl_safe_init’:
plperl.c:537: error: ‘F_TEXTOUT’ undeclared (first use in this function)
plperl.c:537: error: (Each undeclared identifier is reported only once
plperl.c:537: error: for each function it appears in.)
make: *** [plperl.o] Error 1

The file fmgroids.h seems to be missing. Any hints??

Fred


Re: plperl fails to compile PostgreSQL v8.2.6

От
Alvaro Herrera
Дата:
Fred Stevens wrote:
> when compiling plperl on SuSE 10.2 the following error occurs:
> 
> gcc -O2 -g -m32 -march=i586 -mtune=i686 -fmessage-length=0
> -D_FORTIFY_SOURCE=2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline
> -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fpic
> -I. -I../../../src/include -D_GNU_SOURCE
> -I/usr/lib/perl5/5.8.8/i586-linux-thread-multi/CORE -c -o plperl.o plperl.c
> plperl.c:26:28: error: utils/fmgroids.h: No such file or directory
> plperl.c: In function ‘plperl_safe_init’:
> plperl.c:537: error: ‘F_TEXTOUT’ undeclared (first use in this function)
> plperl.c:537: error: (Each undeclared identifier is reported only once
> plperl.c:537: error: for each function it appears in.)
> make: *** [plperl.o] Error 1
> 
> The file fmgroids.h seems to be missing. Any hints??

It is a generated file.  If you got the source from CVS, you are
expected to ensure the file is generated ("make" on src/backend should
do it AFAIR).  If you didn't, it's probably a packaging bug.

-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.


Re: plperl fails to compile PostgreSQL v8.2.6

От
Tom Lane
Дата:
Fred Stevens <fstevens@cimsoftware.com> writes:
> The file fmgroids.h seems to be missing. Any hints??

You need to build the whole source tree, not just the plperl
subdirectory.
        regards, tom lane