mirror of
https://github.com/postgres/postgres.git
synced 2025-05-21 00:02:53 -04:00
Fix plpsql for bsdi.
This commit is contained in:
parent
9f74608f47
commit
f40c50627f
2
doc/TODO
2
doc/TODO
@ -72,7 +72,7 @@ MISC
|
|||||||
* Plpgsql does not handle quoted mixed-case identifiers
|
* Plpgsql does not handle quoted mixed-case identifiers
|
||||||
* -Fix btree to give a useful elog when key > 1/2 (page - overhead)(Tom)
|
* -Fix btree to give a useful elog when key > 1/2 (page - overhead)(Tom)
|
||||||
* -pg_dump should preserve primary key information(Peter E)
|
* -pg_dump should preserve primary key information(Peter E)
|
||||||
* plpgsql regression tests fails on BSD/OS
|
* -plpgsql regression tests fails on BSD/OS
|
||||||
* -database names with spaces fail
|
* -database names with spaces fail
|
||||||
* -insert of 0.0 into DECIMAL(4,4) field fails(Tom)
|
* -insert of 0.0 into DECIMAL(4,4) field fails(Tom)
|
||||||
* -* Interlock to prevent DROP DATABASE on a database with running backendsInterlock to prevent DROP DATABASE on a database with running backends
|
* -* Interlock to prevent DROP DATABASE on a database with running backendsInterlock to prevent DROP DATABASE on a database with running backends
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# Makefile for the plpgsql shared object
|
# Makefile for the plpgsql shared object
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.19 2000/01/16 20:04:59 petere Exp $
|
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.20 2000/02/23 22:24:45 momjian Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -24,6 +24,10 @@ CFLAGS+= -I$(SRCDIR)/backend
|
|||||||
ifneq (,$(findstring flex,$(LEX)))
|
ifneq (,$(findstring flex,$(LEX)))
|
||||||
LFLAGS+= -i -l
|
LFLAGS+= -i -l
|
||||||
endif
|
endif
|
||||||
|
# bsdi calls flex lex
|
||||||
|
ifeq ($(PORTNAME), bsdi)
|
||||||
|
LFLAGS+= -i -l
|
||||||
|
endif
|
||||||
|
|
||||||
OBJS= pl_parse.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
|
OBJS= pl_parse.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
|
||||||
|
|
||||||
|
5
src/tools/copyright
Executable file
5
src/tools/copyright
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
rgrepc -l 'Copyright.*Regents' | while read FILE
|
||||||
|
do
|
||||||
|
pipe sed 's/^\(.*\)\(Copyright.*Regents.*\)$/ * Portions Copyright (c) 1996-1999, PostgreSQL, Inc\
|
||||||
|
\1Portions \2/g' $FILE
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user