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
ac652466
Commit
ac652466
authored
Jul 24, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partial fixes for contrib build on AIX: include -lm where needed.
Per Rocco Altier.
parent
d675226e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
5 deletions
+10
-5
contrib/cube/Makefile
contrib/cube/Makefile
+2
-1
contrib/earthdistance/Makefile
contrib/earthdistance/Makefile
+3
-1
contrib/tablefunc/Makefile
contrib/tablefunc/Makefile
+2
-0
contrib/tsearch2/Makefile
contrib/tsearch2/Makefile
+2
-2
src/makefiles/Makefile.aix
src/makefiles/Makefile.aix
+1
-1
No files found.
contrib/cube/Makefile
View file @
ac652466
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.1
2 2004/08/20 20:13:02 momjian
Exp $
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.1
3 2005/07/24 23:30:09 tgl
Exp $
MODULE_big
=
cube
OBJS
=
cube.o cubeparse.o
...
...
@@ -9,6 +9,7 @@ REGRESS = cube
EXTRA_CLEAN
=
cubeparse.c cubeparse.h cubescan.c y.tab.c y.tab.h
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
...
...
contrib/earthdistance/Makefile
View file @
ac652466
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.1
4 2004/08/20 20:13:03 momjian
Exp $
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.1
5 2005/07/24 23:30:09 tgl
Exp $
MODULES
=
earthdistance
DATA_built
=
earthdistance.sql
DOCS
=
README.earthdistance
REGRESS
=
earthdistance
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
...
...
contrib/tablefunc/Makefile
View file @
ac652466
...
...
@@ -3,6 +3,8 @@ DATA_built = tablefunc.sql
DOCS
=
README.tablefunc
REGRESS
=
tablefunc
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
...
...
contrib/tsearch2/Makefile
View file @
ac652466
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.
8 2004/10/17 23:09:31
tgl Exp $
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.
9 2005/07/24 23:30:10
tgl Exp $
MODULE_big
=
tsearch2
OBJS
=
dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o
\
...
...
@@ -19,7 +19,7 @@ DATA_built = tsearch2.sql untsearch2.sql
DOCS
=
README.tsearch2
REGRESS
=
tsearch2
SHLIB_LINK
:=
-lm
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
...
...
src/makefiles/Makefile.aix
View file @
ac652466
...
...
@@ -28,6 +28,6 @@ MKLDEXPORT=$(top_srcdir)/src/backend/port/aix/mkldexport.sh
%$(DLSUFFIX)
:
%.o %$(EXPSUFF)
@
echo
Making shared library
$@
from
$*
.o,
$*$(EXPSUFF)
and postgres.imp
$(CC)
$(LDFLAGS)
$(LDFLAGS_SL)
-o
$@
$*
.o
-Wl
,-bI:
$(top_builddir)
/src/backend/
$(POSTGRES_IMP)
-Wl
,-bE:
$*$(EXPSUFF)
$(
LIBS
)
$(CC)
$(LDFLAGS)
$(LDFLAGS_SL)
-o
$@
$*
.o
-Wl
,-bI:
$(top_builddir)
/src/backend/
$(POSTGRES_IMP)
-Wl
,-bE:
$*$(EXPSUFF)
$(
SHLIB_LINK
)
sqlmansect
=
7
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