diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-10-13 17:26:50 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-10-13 17:26:50 +0000 |
commit | cd3a8e232cd6b62dd8c31ecbd780c0944c84bce0 (patch) | |
tree | 6d6f2b8ad333b3255d7b0dbe38323b4dbe54fc7d /src/backend | |
parent | 8c586b2a2aa9beed60020a0e1896fdf1fa543745 (diff) | |
download | postgresql-cd3a8e232cd6b62dd8c31ecbd780c0944c84bce0.tar.gz postgresql-cd3a8e232cd6b62dd8c31ecbd780c0944c84bce0.zip |
change configure so that if postgresql isn't being installed as root,
do not configure in the perl5 interface.
the perl5 interface needs to be installed under /usr/local/lib/perl5/*, which
is generally owned by root. This allows a non-root build/install with the
only root requirement being the make/install of hte perl5 stuff...
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/parser/gram.c | 8 | ||||
-rw-r--r-- | src/backend/parser/scan.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/parser/gram.c b/src/backend/parser/gram.c index 1db4867fc4f..ff17bfc0386 100644 --- a/src/backend/parser/gram.c +++ b/src/backend/parser/gram.c @@ -229,7 +229,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.44 1998/10/09 21:28:42 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.45 1998/10/13 17:26:41 scrappy Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -4450,7 +4450,7 @@ static const short yycheck[] = { 3, -1, -1, -1, -1, -1, -1, -1, -1, 204 }; /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ -#line 3 "/usr/local/bison/bison.simple" +#line 3 "/usr/local/share/bison.simple" /* Skeleton output parser for bison, Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc. @@ -4643,7 +4643,7 @@ __yy_memcpy (char *to, char *from, int count) #endif #endif -#line 196 "/usr/local/bison/bison.simple" +#line 196 "/usr/local/share/bison.simple" /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. @@ -10398,7 +10398,7 @@ case 929: break;} } /* the action file gets copied in in place of this dollarsign */ -#line 498 "/usr/local/bison/bison.simple" +#line 498 "/usr/local/share/bison.simple" yyvsp -= yylen; yyssp -= yylen; diff --git a/src/backend/parser/scan.c b/src/backend/parser/scan.c index 0ff46f73f1c..528cd7f1cde 100644 --- a/src/backend/parser/scan.c +++ b/src/backend/parser/scan.c @@ -1,7 +1,7 @@ /* A lexical scanner generated by flex */ /* Scanner skeleton version: - * /master/usr.bin/lex/skel.c,v 1.3 1997/09/25 00:10:23 jch Exp + * $Header: /cvsroot/pgsql/src/backend/parser/Attic/scan.c,v 1.31 1998/10/13 17:26:50 scrappy Exp $ */ #define FLEX_SCANNER @@ -556,7 +556,7 @@ char *yytext; * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/Attic/scan.c,v 1.30 1998/10/09 03:07:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/Attic/scan.c,v 1.31 1998/10/13 17:26:50 scrappy Exp $ * *------------------------------------------------------------------------- */ |