Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
638b153f
Commit
638b153f
authored
Feb 14, 2014
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix fat-fingered makefile changes for pltcl.
I put the OBJS assignments in the wrong order. Per buildfarm.
parent
2128c52f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
14 deletions
+15
-14
src/pl/tcl/Makefile
src/pl/tcl/Makefile
+15
-14
No files found.
src/pl/tcl/Makefile
View file @
638b153f
...
...
@@ -29,15 +29,28 @@ endif
endif
# On Windows, we don't link directly with the Tcl library; see below
ifneq
($(PORTNAME), win32)
SHLIB_LINK
=
$(TCL_LIB_SPEC)
$(TCL_LIBS)
-lc
endif
NAME
=
pltcl
OBJS
=
pltcl.o
else
# win32
DATA
=
pltcl.control pltcl--1.0.sql pltcl--unpackaged--1.0.sql
\
pltclu.control pltclu--1.0.sql pltclu--unpackaged--1.0.sql
REGRESS_OPTS
=
--dbname
=
$(PL_TESTDB)
--load-extension
=
pltcl
REGRESS
=
pltcl_setup pltcl_queries
# where to find psql for running the tests
PSQLDIR
=
$(bindir)
# Tcl on win32 ships with import libraries only for Microsoft Visual C++,
# which are not compatible with mingw gcc. Therefore we need to build a
# new import library to link with.
ifeq
($(PORTNAME), win32)
tclwithver
=
$(
subst
-l
,,
$(
filter
-l
%,
$(TCL_LIB_SPEC)
))
TCLDLL
=
$(
subst
-L
,,
$(
filter
-L
%,
$(TCL_LIB_SPEC)
))
/
$(tclwithver)
.dll
...
...
@@ -53,18 +66,6 @@ $(tclwithver).def: $(TCLDLL)
endif
# win32
NAME
=
pltcl
OBJS
=
pltcl.o
DATA
=
pltcl.control pltcl--1.0.sql pltcl--unpackaged--1.0.sql
\
pltclu.control pltclu--1.0.sql pltclu--unpackaged--1.0.sql
REGRESS_OPTS
=
--dbname
=
$(PL_TESTDB)
--load-extension
=
pltcl
REGRESS
=
pltcl_setup pltcl_queries
# where to find psql for running the tests
PSQLDIR
=
$(bindir)
include
$(top_srcdir)/src/Makefile.shlib
ifeq
($(TCL_SHARED_BUILD), 1)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment