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
52ab6525
Commit
52ab6525
authored
Mar 25, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start of a univel port by "Michael P. Snyder" <msnyder@hawkeye.huntersmoon.com>
parent
1a63f48b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
2 deletions
+51
-2
src/Makefile.global.in
src/Makefile.global.in
+41
-1
src/config.sub
src/config.sub
+3
-0
src/configure.in
src/configure.in
+7
-1
No files found.
src/Makefile.global.in
View file @
52ab6525
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.1
2 1997/03/06 22:58:48 momjian
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.1
3 1997/03/25 07:16:30 scrappy
Exp $
#
# NOTES
# Essentially all Postgres make files include this file and use the
...
...
@@ -59,6 +59,7 @@
# sunos4 SUN SPARC on SunOS 4.1.3
# svr4 Intel x86 on Intel SVR4
# ultrix4 DEC MIPS on Ultrix 4.4
# univel Unixware 2.0x x86
#
# PostgresSQL has known problems/bugs on the following platforms:
#
...
...
@@ -598,6 +599,45 @@ DLSUFFIX= .o
endif
#-----------------------------------------------------------------------------
#
# The univel port is almost guaranteed NOT to work yet.
#
ifeq
($(PORTNAME), univel)
#CFLAGS+= -DHAVE_RUSAGE -DTRACEDEBUG -DASYNC_DEBUG
CFLAGS
+=
-DHAVE_RUSAGE
-m486
-Dsvr4
CFLAGS_SL
=
-fPIC
YACC
=
bison
-y
#
# Some of the Makefiles use LDADD, others use LD_ADD.
# This makes them the same.
#
LDADD
=
$(LD_ADD)
# MAKE_EXPORTS is required for svr4 loaders that want a file of
# symbol names to tell them what to export/import.
#MAKE_EXPORTS= true
#
# Random things that must be passed everywhere to enable
# everything to compile. :-/
#
# The extra -I flag is to scoop up extra BSD-emulating headers.
CFLAGS_BE
+=
-I
$(SRCDIR)
/backend/port/univel
%.so
:
%.o
$(LD)
-G
-Bdynamic
-o
$@
$<
DASH_N
=
''
BACKSLASH_C
=
'\\\\c'
INSTALL
=
/usr/ucb/install
endif
#---------------------------------------------------------------------------
ifeq
($(PORTNAME), nextstep)
AROPT
=
rc
...
...
src/config.sub
View file @
52ab6525
...
...
@@ -671,6 +671,9 @@ case $os in
-unixware
*
|
svr4
*
)
os
=
-sysv4
;;
-univel
*
)
os
=
-sysv4
;;
-gnu
/linux
*
)
os
=
`
echo
$os
|
sed
-e
's|gnu/linux|linux-gnu|'
`
;;
...
...
src/configure.in
View file @
52ab6525
...
...
@@ -18,11 +18,16 @@ nextstep*) PORTNAME='nextstep';;
irix*) PORTNAME='irix5';;
hpux*) PORTNAME='hpux';;
osf*) PORTNAME='alpha';;
sysv4.2*)
case "$host_vendor" in
univel) PORTNAME='univel';;
*) PORTNAME='unknown';;
esac ;;
*) echo ""
echo "*************************************************************"
echo "configure does not currently recognize your operating system,"
echo "therefore you must do a manual configuration of:"
echo ""
echo "
$host_os
"
echo "Please contact scrappy@hub.org to see about rectifying this, "
echo "including the above 'checking host system type...' line "
echo "*************************************************************"
...
...
@@ -123,6 +128,7 @@ AC_CHECK_LIB(ld, main)
AC_CHECK_LIB(compat, main)
AC_CHECK_LIB(BSD, main)
AC_CHECK_LIB(crypt, main)
AC_CHECK_LIB(gen, main)
dnl Checks for header files.
AC_HEADER_STDC
...
...
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