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
af7a2b32
Commit
af7a2b32
authored
Feb 05, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build in a 'dummy' tas file...nothing in it, just used for the link process
of configure
parent
0f582cee
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
222 additions
and
220 deletions
+222
-220
src/backend/port/tas/dummy.s
src/backend/port/tas/dummy.s
+0
-0
src/configure
src/configure
+217
-216
src/configure.in
src/configure.in
+5
-4
No files found.
src/backend/port/tas/dummy.s
0 → 100644
View file @
af7a2b32
src/configure
View file @
af7a2b32
This diff is collapsed.
Click to expand it.
src/configure.in
View file @
af7a2b32
...
...
@@ -4,11 +4,12 @@ AC_PREFIX_DEFAULT(/usr/local/pgsql)
AC_CANONICAL_HOST
tas_file=dummy.s
case "$host_os" in
solaris*)
case "$host_cpu" in
sparc) os=sparc_solaris need_tas=yes ;;
i386) os=i386_solaris need_tas=yes ;;
sparc) os=sparc_solaris need_tas=yes
tas_file=sparc_solaris.s
;;
i386) os=i386_solaris need_tas=yes
tas_file=i386_solaris
;;
esac ;;
sunos*) os=sunos4 need_tas=no ;;
aux*) os=aux need_tas=no ;;
...
...
@@ -20,7 +21,7 @@ case "$host_os" in
nextstep*) os=nextstep need_tas=no ;;
ultrix*) os=ultrix4 need_tas=no ;;
irix*) os=irix5 need_tas=no ;;
hpux*) os=hpux need_tas=yes ;;
hpux*) os=hpux need_tas=yes
tas_file=hpux.s
;;
osf*) os=alpha need_tas=no ;;
sco*) os=sco need_tas=no ;;
machten*) os=machten need_tas=no ;;
...
...
@@ -45,7 +46,7 @@ esac
if test "X$need_tas" = "Xyes"
then
AC_LINK_FILES(backend/port/tas/${
os}.s
, backend/port/tas.s)
AC_LINK_FILES(backend/port/tas/${
tas_file}
, backend/port/tas.s)
TAS=tas.o
AC_SUBST(TAS)
fi
...
...
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