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
80b6206c
Commit
80b6206c
authored
Jan 13, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further clean up "auto-configuration" for ports
parent
6361ac88
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
221 additions
and
212 deletions
+221
-212
src/backend/port/Makefile.in
src/backend/port/Makefile.in
+2
-2
src/configure
src/configure
+214
-209
src/configure.in
src/configure.in
+5
-1
No files found.
src/backend/port/Makefile.in
View file @
80b6206c
...
...
@@ -13,7 +13,7 @@
# be converted to Method 2.
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.1
2 1997/12/30 04:08:55
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.1
3 1998/01/13 15:31:09
scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -25,7 +25,7 @@ INCLUDE_OPT = -I..
CFLAGS
+=
${INCLUDE_OPT}
OBJS
=
dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
OBJS
+=
@GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@
OBJS
+=
@GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@
@TAS@
all
:
SUBSYS.o
...
...
src/configure
View file @
80b6206c
This diff is collapsed.
Click to expand it.
src/configure.in
View file @
80b6206c
...
...
@@ -7,7 +7,11 @@ case "$host_os" in
solaris*)
case "$host_cpu" in
sparc) os=sparc_solaris ;;
i386) os=i386_solaris ;;
i386)
os=i386_solaris
AC_LINK_FILES(backend/port/tas/i386_solaris.s backend/port/tas.s)
TAS=tas.s
AC_SUBST(TAS) ;;
esac ;;
sunos*) os=sunos4 ;;
linux*) os=linux ;;
...
...
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