Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3f2fff5c
Commit
3f2fff5c
authored
Oct 02, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Search contrib/tcl for tcl startup.
parent
e12f4162
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
src/backend/utils/adt/numutils.c
src/backend/utils/adt/numutils.c
+2
-2
src/pl/tcl/mkMakefile.tcldefs
src/pl/tcl/mkMakefile.tcldefs
+4
-1
No files found.
src/backend/utils/adt/numutils.c
View file @
3f2fff5c
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.2
7 1998/09/12 16:04:35
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.2
8 1998/10/02 01:22:42
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
int32
int32
pg_atoi
(
char
*
s
,
int
size
,
int
c
)
pg_atoi
(
char
*
s
,
int
size
,
int
c
)
{
{
long
l
;
long
l
=
0
;
char
*
badp
=
(
char
*
)
NULL
;
char
*
badp
=
(
char
*
)
NULL
;
Assert
(
s
);
Assert
(
s
);
...
...
src/pl/tcl/mkMakefile.tcldefs
View file @
3f2fff5c
...
@@ -5,12 +5,15 @@ else
...
@@ -5,12 +5,15 @@ else
if
[
-f
/usr/lib/tclConfig.sh
]
;
then
if
[
-f
/usr/lib/tclConfig.sh
]
;
then
echo
"using tclConfig.sh from /usr/lib"
echo
"using tclConfig.sh from /usr/lib"
.
/usr/lib/tclConfig.sh
.
/usr/lib/tclConfig.sh
elif
[
-f
/usr/contrib/lib/tclConfig.sh
]
;
then
echo
"using tclConfig.sh from /usr/contrib/lib"
.
/usr/contrib/lib/tclConfig.sh
else
else
if
[
-f
/usr/local/lib/tclConfig.sh
]
;
then
if
[
-f
/usr/local/lib/tclConfig.sh
]
;
then
echo
"using tclConfig.sh from /usr/local/lib"
echo
"using tclConfig.sh from /usr/local/lib"
.
/usr/local/lib/tclConfig.sh
.
/usr/local/lib/tclConfig.sh
else
else
echo
"tclConfig.sh not found in /usr/lib or /usr/local/lib"
echo
"tclConfig.sh not found in /usr/lib
, /usr/contrib/lib,
or /usr/local/lib"
echo
"I need this file! Please make a symbolic link to this file"
echo
"I need this file! Please make a symbolic link to this file"
echo
"and start make again."
echo
"and start make again."
exit
1
exit
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment