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
90b3a0b6
Commit
90b3a0b6
authored
Dec 15, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve comment.
parent
c465dcc1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
configure
configure
+1
-1
configure.in
configure.in
+9
-9
No files found.
configure
View file @
90b3a0b6
...
...
@@ -10551,7 +10551,7 @@ case $host_os in bsdi*|netbsd*)
ac_cv_func_fseeko
=
yes
esac
# Solaris has a very slow qsort in certain cases.
# Solaris has a very slow qsort in certain cases
, so we replace it
.
case
$host_os
in
solaris
*
)
LIBOBJS
=
"
$LIBOBJS
qsort.
$ac_objext
"
;;
esac
...
...
configure.in
View file @
90b3a0b6
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.22
1 2002/12/06 04:37:02
momjian Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.22
2 2002/12/15 03:16:58
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -844,8 +844,8 @@ case $host_os in bsdi*|netbsd*)
ac_cv_func_fseeko=yes
esac
# Solaris has a very slow qsort in certain cases.
case $host_os in
# Solaris has a very slow qsort in certain cases
, so we replace it
.
case $host_os in
solaris*) AC_LIBOBJ(qsort) ;;
esac
...
...
@@ -853,7 +853,7 @@ esac
# this hackery with HPUXMATHLIB allows us to cope.
HPUXMATHLIB=""
case $host_cpu in
hppa1.1)
hppa1.1)
if test -r /lib/pa1.1/libm.a ; then
HPUXMATHLIB="-L /lib/pa1.1 -lm"
fi ;;
...
...
@@ -888,7 +888,7 @@ AC_TRY_LINK([#include <setjmp.h>],
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)])
AC_CHECK_FUNC(syslog,
AC_CHECK_FUNC(syslog,
[AC_CHECK_HEADER(syslog.h,
[AC_DEFINE(HAVE_SYSLOG, 1, [])],
[])])
...
...
@@ -998,16 +998,16 @@ main() {
INT64_FORMAT='"%lld"'
],
[ AC_MSG_RESULT(no)
AC_MSG_CHECKING(whether snprintf handles 'long long int' as %qd)
AC_MSG_CHECKING(whether snprintf handles 'long long int' as %qd)
AC_TRY_RUN([#include <stdio.h>
typedef long long int int64;
#define INT64_FORMAT "%qd"
int64 a = 20000001;
int64 b = 40000005;
int does_int64_snprintf_work()
{
{
int64 c;
char buf[100];
...
...
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