Commit 56caaf19 authored by Tom Lane's avatar Tom Lane

On Windows, expect to find Tcl DLL in bin directory not lib directory.

Still another step in the continuing saga of trying to get
--disable-auto-import to work.

Hiroshi Inoue
parent cefd3e50
...@@ -53,7 +53,7 @@ PSQLDIR = $(bindir) ...@@ -53,7 +53,7 @@ PSQLDIR = $(bindir)
ifeq ($(PORTNAME), win32) ifeq ($(PORTNAME), win32)
tclwithver = $(subst -l,,$(filter -l%, $(TCL_LIB_SPEC))) tclwithver = $(subst -l,,$(filter -l%, $(TCL_LIB_SPEC)))
TCLDLL = $(subst -L,,$(filter -L%, $(TCL_LIB_SPEC)))/$(tclwithver).dll TCLDLL = $(dir $(TCLSH))/$(tclwithver).dll
OBJS += lib$(tclwithver).a OBJS += lib$(tclwithver).a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment