summaryrefslogtreecommitdiff
path: root/config/missing
Commit message (Collapse)AuthorAgeFilesLines
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
|
* Revert configure warning to use "official distribution".Bruce Momjian2010-02-221-3/+3
|
* Use the term "bundled distribution" instead of "official distribution" inBruce Momjian2010-02-221-3/+3
| | | | configure warnings.
* Fix the makefiles to fail cleanly if Perl is needed but not present. ThisTom Lane2009-06-231-3/+22
| | | | | | | | | | used to work as intended, but got broken some time ago (a quoted empty string is not an empty string), and got broken some more by the changes to generate ecpg's preproc.y automatically. Given all the unprotected uses of $(PERL) elsewhere, it seems best to make use of the $(missing) script rather than trying to ensure each such use is protected individually. Also fix various bits of documentation that omitted to mention Perl as a requirement for building from a CVS pull. Per a complaint from Robert Haas.
* Add CVS tag lines to files that were lacking them.Bruce Momjian2006-03-111-0/+2
|
* Only look for bison as YACC; other yaccs need to be selected explicitly.Peter Eisentraut2001-02-101-7/+7
| | | | | When no suitable YACC is configured, supply useful informational messages to users. (Same way flex has been handled for a while.)
* New configure test for flex, which recognizes only flex but does so in allPeter Eisentraut2000-08-281-262/+30
| | | | | | incarnations (I hope). When an acceptable flex version is not found, print instructive error messages from both configure and the makefiles, so that users can continue building anyway.
* Moved the intricacies of the perl interface build into its own makefilePeter Eisentraut2000-06-101-0/+265
that now functions as a wrapper around the MakeMaker stuff. It might even behave sensically when we have separate build dirs. Same for plperl, which of course still doesn't work very well. Made sure that plperl respects the choice of --libdir. Added --with-python to automatically build and install the Python interface. Works similarly to the Perl5 stuff. Moved the burden of the distclean targets lower down into the source tree. Eventually, each make file should have its own. Added automatic remaking of makefiles and configure. Currently only for the top-level because of a bug(?) in Autoconf. Use GNU `missing' to work around missing autoconf and aclocal. Start factoring out macros into their own config/*.m4 files to increase readability and organization.