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
5c1cfb5f
Commit
5c1cfb5f
authored
May 19, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configure adjustments for irix.
David Turover
parent
29fcd220
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
145 additions
and
129 deletions
+145
-129
config/programs.m4
config/programs.m4
+3
-3
configure
configure
+130
-122
configure.in
configure.in
+12
-4
No files found.
config/programs.m4
View file @
5c1cfb5f
# $PostgreSQL: pgsql/config/programs.m4,v 1.1
3 2003/11/29 19:51:17 pgsql
Exp $
# $PostgreSQL: pgsql/config/programs.m4,v 1.1
4 2004/05/19 22:12:30 momjian
Exp $
# PGAC_PATH_FLEX
...
...
@@ -87,9 +87,9 @@ for pgac_lib in "" " -ltermcap" " -lncurses" " -lcurses" ; do
pgac_save_LIBS=$LIBS
LIBS="${pgac_rllib}${pgac_lib} $LIBS"
AC_TRY_LINK_FUNC([readline], [[
# NetBSD
and OpenBSD
have a broken linker that does not
# NetBSD
, OpenBSD, and Irix
have a broken linker that does not
# recognize dependent libraries
case $host_os in netbsd* | openbsd* )
case $host_os in netbsd* | openbsd*
| irix*
)
case $pgac_lib in
*curses*) ;;
*) pgac_lib=" -lcurses" ;;
...
...
configure
View file @
5c1cfb5f
This diff is collapsed.
Click to expand it.
configure.in
View file @
5c1cfb5f
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.35
2 2004/05/19 21:37:42
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.35
3 2004/05/19 22:12:30
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -580,11 +580,20 @@ if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha"
then
AC_CHECK_LIB(bsd, main)
fi
# Irix has nsl, socket, gen, and sun in its libc, but also
# keeps separate libs around for backwords compatibility.
# Using them creates warnings in config.log. This test quiets that.
# See also: http://freeware.sgi.com/howto.html
if test "$PORTNAME" != "irix"
then
AC_CHECK_LIB(nsl, main)
AC_CHECK_LIB(socket, main)
AC_CHECK_LIB(gen, main)
fi
AC_CHECK_LIB(util, setproctitle)
AC_CHECK_LIB(m, main)
AC_CHECK_LIB(dl, main)
AC_CHECK_LIB(nsl, main)
AC_CHECK_LIB(socket, main)
AC_CHECK_LIB(ipc, main)
AC_CHECK_LIB(IPC, main)
AC_CHECK_LIB(lc, main)
...
...
@@ -592,7 +601,6 @@ AC_CHECK_LIB(dld, main)
AC_CHECK_LIB(ld, main)
AC_CHECK_LIB(compat, main)
AC_CHECK_LIB(BSD, main)
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(resolv, main)
AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
...
...
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