mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Well this is not really a patch. But I mananged to get Linus' old Postgres95 precompiler to compile and work with PostgreSQL. The next step would be to collect bug/missing feature reports and to put it into the distribution so that it is made with the standard make procedure. Warning! So far it is not tested much and it does not install correctly. But I was able to create a small binary with it.
16 lines
475 B
Plaintext
16 lines
475 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(src/preproc/type.c)
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_LEX
|
|
AC_PROG_YACC
|
|
|
|
dnl This is actually not pwd, it is the location of the configure file.
|
|
dnl This handling, and the fact that not all Makefiles are created by
|
|
dnl this configure script makes it impossible to compile somewhere else.
|
|
[TOPSRC=`pwd`/../..]
|
|
|
|
AC_SUBST(TOPSRC)
|
|
|
|
AC_OUTPUT(src/include/Makefile src/lib/Makefile src/preproc/Makefile src/preproc/ecpg)
|