Commit 89143df5 authored by Fred Drake's avatar Fred Drake

Added support for ctermid, tempnam, tmpfile, tmpnam, and tmpnam_r.

parent 5ab8eaf0
......@@ -215,6 +215,12 @@
/* Define if you have the clock function. */
#undef HAVE_CLOCK
/* Define if you have the ctermid function. */
#undef HAVE_CTERMID
/* Define if you have the ctermid_r function. */
#undef HAVE_CTERMID_R
/* Define if you have the dlopen function. */
#undef HAVE_DLOPEN
......@@ -374,12 +380,24 @@
/* Define if you have the tcsetpgrp function. */
#undef HAVE_TCSETPGRP
/* Define if you have the tempnam function. */
#undef HAVE_TEMPNAM
/* Define if you have the timegm function. */
#undef HAVE_TIMEGM
/* Define if you have the times function. */
#undef HAVE_TIMES
/* Define if you have the tmpfile function. */
#undef HAVE_TMPFILE
/* Define if you have the tmpnam function. */
#undef HAVE_TMPNAM
/* Define if you have the tmpnam_r function. */
#undef HAVE_TMPNAM_R
/* Define if you have the truncate function. */
#undef HAVE_TRUNCATE
......
This diff is collapsed.
......@@ -679,13 +679,14 @@ DLINCLDIR=${dldir}
LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
# checks for library functions
AC_CHECK_FUNCS(alarm chown clock dlopen execv flock fork \
AC_CHECK_FUNCS(alarm chown clock ctermid ctermid_r dlopen execv flock fork \
fsync fdatasync ftime ftruncate \
getpeername getpgrp getpid getpwent gettimeofday getwd \
kill link lstat mkfifo mktime nice pause plock pthread_init putenv readlink \
select setgid setlocale setuid setsid setpgid setpgrp setvbuf \
sigaction siginterrupt sigrelse strftime strptime symlink \
tcgetpgrp tcsetpgrp timegm times truncate uname waitpid)
tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
truncate uname waitpid)
# check for long file support functions
AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment