This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Which packages are needed for PostgreSQL-7.3.2-1


>          make -C tcop all
>          make[3]: Entering directory
>          `/usr/src/postgresql-7.3.2-1/src/backend/tcop'
>          gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations
>          -I../../../src/include  -DBUILDING_DLL  -c -o dest.o dest.c
>  [...]
>          gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations
>          -Wno-error  -I. -I../../../../src/include   -c -o pl_funcs.o
>          pl_funcs.c
>          dlltool --export-all --output-def plpgsql.def pl_gram.o
>          pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
>          dllwrap -o plpgsql.dll --dllname plpgsql.dll --def plpgsql.def
>          pl_gram.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
>          ../../../../src/utils/d
>          llinit.o -L/usr/local/lib -L../../../../src/backend -lpostgres
>          dlltool --dllname plpgsql.dll --def plpgsql.def --output-lib
>          libplpgsql.a
>          make[4]: Leaving directory
>          `/usr/src/postgresql-7.3.2-1/src/pl/plpgsql/src'
>          make[3]: Leaving directory
>          `/usr/src/postgresql-7.3.2-1/src/pl/plpgsql'
>          make[2]: Leaving directory `/usr/src/postgresql-7.3.2-1/src/pl'
>          make[1]: Leaving directory `/usr/src/postgresql-7.3.2-1/src'
>          All of PostgreSQL successfully made. Ready to install.
>
>
> How can I solve all the misssing statements? Do I need to solve this or
can
> I use PostgreSQL like this?

The only thing I can see wrong with the above is a warning that
`yy_flex_realloc' hasn't been used. And as it actually got to the
making-of-the-dll stage I guess it built ok. The "missing statements" are
part of the arguments given to gcc if you mean

>          gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations
                                         ^^^^^                        ^^^^^^

then these are nothing to worry about. They mean issue a warning if there
are missing prototypes or missing declarations. Take a look at
/usr/doc/Cygwin/postgresql-7.3.README to see a list of build requirements.

> I am newbie in cygwin and unix world. So, if somebody would have time to
> explain me a little bit, how to read this messages, would be great.

A gcc/make user's list would be better to find out answers to these sorta
questions, or one better would be a tutorial for either gcc or make.


Regards,

Elfyn McBratney
elfyn at exposure dot org dot uk
www.exposure.org.uk



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]