From: Bruce Momjian Date: Tue, 13 Jun 2000 12:49:33 +0000 (+0000) Subject: add missing files X-Git-Tag: REL7_1_BETA~1117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a13b3f8cb6176ed8b99dbcf8ae8e4185f3ee0182;p=postgresql add missing files --- diff --git a/src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in b/src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in new file mode 100644 index 0000000000..a8c2cc374d --- /dev/null +++ b/src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in @@ -0,0 +1,16 @@ + +if [ ! -f @TCL_CONFIG_SH@ ]; then + echo "@TCL_CONFIG_SH@ not found" + echo "I need this file! Please make a symbolic link to this file" + echo "and start make again." + exit 1 +fi + +cat @TCL_CONFIG_SH@ | + egrep '^TCL_' | + while read inp + do + eval eval echo $inp + done >Makefile.tcldefs + +exit 0 diff --git a/src/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in b/src/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in new file mode 100644 index 0000000000..3b5fd2402f --- /dev/null +++ b/src/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in @@ -0,0 +1,18 @@ + +if [ ! -f @TK_CONFIG_SH@ ]; then + echo "@TK_CONFIG_SH@ not found" + echo "I need this file! Please make a symbolic link to this file" + echo "and start make again." + exit 1 +fi + +. @TK_CONFIG_SH@ + +cat @TK_CONFIG_SH@ | + egrep '^TK_' | + while read inp + do + eval eval echo $inp + done >Makefile.tkdefs + +exit 0