mirror of https://github.com/postgres/postgres
following patches fix the problems (i.e., all regression tests pass) in what I hope to be a platform-independent fashion. The accomplish the following: Brook MilliganREL6_4
parent
60fee725b8
commit
23815260a3
@ -1,25 +0,0 @@ |
|||||||
#!/bin/sh |
|
||||||
if [ -f ./tclConfig.sh ]; then |
|
||||||
. ./tclConfig.sh |
|
||||||
else |
|
||||||
if [ -f /usr/lib/tclConfig.sh ]; then |
|
||||||
echo "using tclConfig.sh from /usr/lib" |
|
||||||
. /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 |
|
||||||
if [ -f /usr/local/lib/tclConfig.sh ]; then |
|
||||||
echo "using tclConfig.sh from /usr/local/lib" |
|
||||||
. /usr/local/lib/tclConfig.sh |
|
||||||
else |
|
||||||
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 "and start make again." |
|
||||||
exit 1 |
|
||||||
fi |
|
||||||
fi |
|
||||||
fi |
|
||||||
|
|
||||||
set | grep '^TCL' >Makefile.tcldefs |
|
||||||
exit 0 |
|
Loading…
Reference in new issue