mirror of
https://github.com/postgres/postgres.git
synced 2025-07-20 05:03:10 +03:00
Remove unused configure variable.
configure extracts TCL_SHLIB_LD_LIBS from tclConfig.sh, and puts the
value into Makefile.global, but then we never use it anywhere. It
looks like I removed the only usage in cd75f94da
, but didn't notice
that it was the only usage. Might as well mop this up while we're
trying to get rid of unnecessary configure steps.
Discussion: https://postgr.es/m/2442359.1660835043@sss.pgh.pa.us
This commit is contained in:
1
configure
vendored
1
configure
vendored
@ -634,7 +634,6 @@ DBTOEPUB
|
|||||||
FOP
|
FOP
|
||||||
XSLTPROC
|
XSLTPROC
|
||||||
XMLLINT
|
XMLLINT
|
||||||
TCL_SHLIB_LD_LIBS
|
|
||||||
TCL_SHARED_BUILD
|
TCL_SHARED_BUILD
|
||||||
TCL_LIB_SPEC
|
TCL_LIB_SPEC
|
||||||
TCL_LIBS
|
TCL_LIBS
|
||||||
|
@ -2252,7 +2252,6 @@ if test "$with_tcl" = yes; then
|
|||||||
PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
|
PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
|
||||||
PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
|
PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
|
||||||
[TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
|
[TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
|
||||||
AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
|
|
||||||
if test "$TCL_SHARED_BUILD" != 1; then
|
if test "$TCL_SHARED_BUILD" != 1; then
|
||||||
AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
|
AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
|
||||||
Use --without-tcl to disable building PL/Tcl.])
|
Use --without-tcl to disable building PL/Tcl.])
|
||||||
|
@ -221,7 +221,6 @@ TCL_LIBS = @TCL_LIBS@
|
|||||||
TCL_LIB_SPEC = @TCL_LIB_SPEC@
|
TCL_LIB_SPEC = @TCL_LIB_SPEC@
|
||||||
TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@
|
TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@
|
||||||
TCL_SHARED_BUILD = @TCL_SHARED_BUILD@
|
TCL_SHARED_BUILD = @TCL_SHARED_BUILD@
|
||||||
TCL_SHLIB_LD_LIBS = @TCL_SHLIB_LD_LIBS@
|
|
||||||
|
|
||||||
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
|
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
|
||||||
PTHREAD_LIBS = @PTHREAD_LIBS@
|
PTHREAD_LIBS = @PTHREAD_LIBS@
|
||||||
|
Reference in New Issue
Block a user