Thread: Missing Make Files
Don't know if this indicates a bug or an incomplete download, but:
Downloaded postgresql-7.3.3.tar.gz and unpacked it on our system (sparc-sun-solaris2.6); ran the configure script, apparently successfully (non-fatal warnings about not finding flex, bison, and zlib), and then attempted to do make, with repeated error messages like this:
You need to run the 'configure' program first. See the file
'INSTALL' for installation instructions.
make: *** [all] Error 255
Inspected the configure and make scripts, and discovered references to GNUmakefile and src/Makefile.global; but the postgresql-7.3.3 directories do not have these files; there is a GNUmakefile.in and a src/Makefile.global.in, but no plain GNUmakefile or Makefile.global; are these files supposed to be created during configure? If so, what might have gone wrong during the configure (config.log attached)? If not, where can we acquire these files?
Downloaded postgresql-7.3.3.tar.gz and unpacked it on our system (sparc-sun-solaris2.6); ran the configure script, apparently successfully (non-fatal warnings about not finding flex, bison, and zlib), and then attempted to do make, with repeated error messages like this:
You need to run the 'configure' program first. See the file
'INSTALL' for installation instructions.
make: *** [all] Error 255
Inspected the configure and make scripts, and discovered references to GNUmakefile and src/Makefile.global; but the postgresql-7.3.3 directories do not have these files; there is a GNUmakefile.in and a src/Makefile.global.in, but no plain GNUmakefile or Makefile.global; are these files supposed to be created during configure? If so, what might have gone wrong during the configure (config.log attached)? If not, where can we acquire these files?
--
David Rickard
Software Engineer
The GTS Companies
A TechBooks Company
----------------------------------------------------------------------------------
The GTS Companies:
GTS Publishing Services, GTS Graphics, GTS Innova:
Your Single-Source Solution!
Los Angeles CA * York, PA * Boston MA * New Delhi, India
----------------------------------------------------------------------------------
David.Rickard@GTSCompanies.com
Visit us on the World Wide Web
http://www.gtscompanies.com
5650 Jillson St., Los Angeles, CA 90040
(323) 888-8889 x331
(323) 888-1849 [fax]
Attachment
David Rickard <David.Rickard@GTScompanies.com> writes: > Downloaded postgresql-7.3.3.tar.gz and unpacked it on our system > (sparc-sun-solaris2.6); ran the configure script, apparently successfully > (non-fatal warnings about not finding flex, bison, and zlib), The zlib error was fatal: configure:5964: error: zlib library not found If you have zlib already installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. Use --without-zlib to disable zlib support. regards, tom lane