Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
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
nexedi
MariaDB
Commits
a587be9f
Commit
a587be9f
authored
Feb 18, 2004
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hpux-friendly isinf-detection
small cleanup
parent
d007a9d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
18 deletions
+21
-18
configure.in
configure.in
+21
-18
No files found.
configure.in
View file @
a587be9f
...
...
@@ -1824,29 +1824,32 @@ AC_TYPE_SIGNAL
MYSQL_TYPE_QSORT
AC_FUNC_UTIME_NULL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS
(
alarm bmove
\
chsize ftruncate rint finite isnan fpsetmask fpresetsticky
\
cuserid fcntl fconvert poll
\
getrusage getpwuid getcwd getrlimit getwd index stpcpy locking longjmp
\
perror pread
realpath readlink
rename
\
socket strnlen madvise mallinfo mkstemp
\
strtol strtoul strtoll strtoull snprintf tempnam thr_setconcurrency
\
gethostbyaddr_r gethostbyname_r getpwnam
\
bfill bzero bcmp strstr strpbrk strerror
\
tell isinf memcpy memmove
\
setupterm strcasecmp sighold vidattr lrand48 localtime_r gmtime_r
\
sigset sigthreadmask pthread_sigmask pthread_setprio pthread_setprio_np
\
pthread_setschedparam pthread_attr_setprio pthread_attr_setschedparam
\
pthread_attr_create pthread_getsequence_np pthread_attr_setstacksize
\
pthread_attr_getstacksize pthread_key_delete
\
pthread_condattr_create rwlock_init pthread_rwlock_rdlock
\
fsync fdatasync fchmod getpass getpassphrase initgroups mlockall
)
AC_CHECK_FUNCS
(
alarm bcmp bfill bmove bzero chsize cuserid fchmod fcntl
\
fconvert fdatasync finite fpresetsticky fpsetmask fsync ftruncate
\
getcwd gethostbyaddr_r gethostbyname_r getpass getpassphrase getpwnam
\
getpwuid getrlimit getrusage getwd gmtime_r index initgroups isnan
\
localtime_r locking longjmp lrand48 madvise mallinfo memcpy memmove
\
mkstemp mlockall perror poll pread pthread_attr_create
\
pthread_attr_getstacksize pthread_attr_setprio pthread_attr_setschedparam
\
pthread_attr_setstacksize pthread_condattr_create pthread_getsequence_np
\
pthread_key_delete pthread_rwlock_rdlock pthread_setprio
\
pthread_setprio_np pthread_setschedparam pthread_sigmask
readlink
\
realpath
rename rint rwlock_init setupterm sighold sigset sigthreadmask
\
snprintf socket stpcpy strcasecmp strerror strnlen strpbrk strstr strtol
\
strtoll strtoul strtoull tell tempnam thr_setconcurrency vidattr
)
# isinf() could be a function or a macro (HPUX)
AC_MSG_CHECKING
(
for
isinf with <math.h>
)
AC_TRY_LINK
([
#include <math.h>], [float f = 0.0; isinf(f)],
AC_MSG_RESULT
(
yes
)
AC_DEFINE
(
HAVE_ISINF,,[isinf
()
macro or
function
])
,
AC_MSG_RESULT
(
no
))
CFLAGS
=
"
$ORG_CFLAGS
"
# Sanity check: We chould not have any fseeko symbol unless
# large_file_support=yes
AC_CHECK_FUNC
S
(
fseeko,
AC_CHECK_FUNC
(
fseeko,
[
if
test
"
$large_file_support
"
=
no
-a
"
$IS_LINUX
"
=
"true"
;
then
AC_MSG_ERROR
(
"Found fseeko symbol but large_file_support is not enabled!"
)
;
...
...
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