File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.27 1998/09/12 16:04:35 momjian Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.28 1998/10/02 01:22:42 momjian Exp $
14
14
*
15
15
*-------------------------------------------------------------------------
16
16
*/
50
50
int32
51
51
pg_atoi (char * s , int size , int c )
52
52
{
53
- long l ;
53
+ long l = 0 ;
54
54
char * badp = (char * ) NULL ;
55
55
56
56
Assert (s );
Original file line number Diff line number Diff line change 5
5
if [ -f /usr/lib/tclConfig.sh ]; then
6
6
echo " using tclConfig.sh from /usr/lib"
7
7
. /usr/lib/tclConfig.sh
8
+ elif [ -f /usr/contrib/lib/tclConfig.sh ]; then
9
+ echo " using tclConfig.sh from /usr/contrib/lib"
10
+ . /usr/contrib/lib/tclConfig.sh
8
11
else
9
12
if [ -f /usr/local/lib/tclConfig.sh ]; then
10
13
echo " using tclConfig.sh from /usr/local/lib"
11
14
. /usr/local/lib/tclConfig.sh
12
15
else
13
- echo " tclConfig.sh not found in /usr/lib or /usr/local/lib"
16
+ echo " tclConfig.sh not found in /usr/lib, /usr/contrib/lib, or /usr/local/lib"
14
17
echo " I need this file! Please make a symbolic link to this file"
15
18
echo " and start make again."
16
19
exit 1
You can’t perform that action at this time.
0 commit comments