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
c9984ab7
Commit
c9984ab7
authored
Oct 23, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comments on bsd/os handling.
parent
dc4d18e0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
configure
configure
+3
-0
configure.in
configure.in
+4
-1
No files found.
configure
View file @
c9984ab7
...
@@ -11471,9 +11471,12 @@ fi
...
@@ -11471,9 +11471,12 @@ fi
done
done
# BSD/OS has a custom fseeko/ftello built on fsetpos/fgetpos
# We override the previous test that said fseeko/ftello didn't exist
case
$host_os
in
bsdi
*
)
case
$host_os
in
bsdi
*
)
ac_cv_func_fseeko
=
yes
ac_cv_func_fseeko
=
yes
esac
esac
echo
"
$as_me
:
$LINENO
: checking for _LARGEFILE_SOURCE value needed for large files"
>
&5
echo
"
$as_me
:
$LINENO
: checking for _LARGEFILE_SOURCE value needed for large files"
>
&5
echo
$ECHO_N
"checking for _LARGEFILE_SOURCE value needed for large files...
$ECHO_C
"
>
&6
echo
$ECHO_N
"checking for _LARGEFILE_SOURCE value needed for large files...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_sys_largefile_source
+set
}
"
=
set
;
then
if
test
"
${
ac_cv_sys_largefile_source
+set
}
"
=
set
;
then
...
...
configure.in
View file @
c9984ab7
dnl Process this file with autoconf to produce a configure script.
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.21
2 2002/10/23 20:56:24
momjian Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.21
3 2002/10/23 20:59:03
momjian Exp $
dnl
dnl
dnl Developers, please strive to achieve this order:
dnl Developers, please strive to achieve this order:
dnl
dnl
...
@@ -903,9 +903,12 @@ AC_CHECK_FUNCS(atexit, [],
...
@@ -903,9 +903,12 @@ AC_CHECK_FUNCS(atexit, [],
[AC_CHECK_FUNCS(on_exit, [],
[AC_CHECK_FUNCS(on_exit, [],
[AC_MSG_ERROR([neither atexit() nor on_exit() found])])])
[AC_MSG_ERROR([neither atexit() nor on_exit() found])])])
# BSD/OS has a custom fseeko/ftello built on fsetpos/fgetpos
# We override the previous test that said fseeko/ftello didn't exist
case $host_os in bsdi*)
case $host_os in bsdi*)
ac_cv_func_fseeko=yes
ac_cv_func_fseeko=yes
esac
esac
AC_FUNC_FSEEKO
AC_FUNC_FSEEKO
...
...
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