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
5e6b0a57
Commit
5e6b0a57
authored
Apr 21, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try for a LINUX_ELF fix (bandage?)
parent
5bdda53f
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
305 additions
and
288 deletions
+305
-288
src/configure
src/configure
+294
-286
src/configure.in
src/configure.in
+7
-0
src/interfaces/libpgtcl/Makefile.in
src/interfaces/libpgtcl/Makefile.in
+2
-1
src/interfaces/libpq/Makefile.in
src/interfaces/libpq/Makefile.in
+2
-1
No files found.
src/configure
View file @
5e6b0a57
This diff is collapsed.
Click to expand it.
src/configure.in
View file @
5e6b0a57
...
...
@@ -80,6 +80,13 @@ AC_ARG_WITH(template,
[ TEMPLATE=template/$withval ],
[ TEMPLATE=template/`uname -s | tr A-Z a-z` ])
AC_MSG_RESULT($TEMPLATE)
if test "$TEMPLATE" = "linux-elf"; then
LINUX_ELF=yes
else
LINUX_ELF=no
fi
AC_SUBST(LINUX_ELF)
export TEMPLATE
if test ! -f "$TEMPLATE"; then
...
...
src/interfaces/libpgtcl/Makefile.in
View file @
5e6b0a57
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.1
1 1998/04/06 16:52:15 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.1
2 1998/04/21 12:38:32 scrappy
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -34,6 +34,7 @@ shlib :=
LIBPQ
=
-L
$(SRCDIR)
/interfaces/libpq
-lpq
ifeq
($(PORTNAME), linux)
LINUX_ELF
=
@LINUX_ELF@
ifdef
LINUX_ELF
install-shlib-dep
:=
install-shlib
shlib
:=
libpgtcl.so.1
...
...
src/interfaces/libpq/Makefile.in
View file @
5e6b0a57
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.1
4 1998/04/06 16:52:28 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.1
5 1998/04/21 12:38:46 scrappy
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -32,6 +32,7 @@ OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-lobj.o \
shlib
:=
install-shlib-dep
:=
ifeq
($(PORTNAME), linux)
LINUX_ELF
=
@LINUX_ELF@
ifdef
LINUX_ELF
install-shlib-dep
:=
install-shlib
shlib
:=
libpq.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
...
...
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