Skip to content

Commit

Permalink
Rebuild configure and config.h.in
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Aug 7, 2014
1 parent 246a200 commit 2b90a15
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
21 changes: 21 additions & 0 deletions autoconf/config.h.in
Expand Up @@ -270,6 +270,12 @@
/* Define to 1 if you have the `fchdir' function. */
#undef HAVE_FCHDIR

/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD

/* Define to 1 if you have the `fchown' function. */
#undef HAVE_FCHOWN

/* Define to 1 if you have the `fchownat' function. */
#undef HAVE_FCHOWNAT

Expand All @@ -294,6 +300,12 @@
/* Define to 1 if you have the `fstatat' function. */
#undef HAVE_FSTATAT

/* Define to 1 if you have the `futimens' function. */
#undef HAVE_FUTIMENS

/* Define to 1 if you have the `futimes' function. */
#undef HAVE_FUTIMES

/* Define to 1 if you have the `futimesat' function. */
#undef HAVE_FUTIMESAT

Expand Down Expand Up @@ -424,6 +436,9 @@
/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
#undef HAVE_LANGINFO_CODESET

/* Define to 1 if you have the `lchmod' function. */
#undef HAVE_LCHMOD

/* Define to 1 if you have the `lchown' function. */
#undef HAVE_LCHOWN

Expand Down Expand Up @@ -511,6 +526,9 @@
/* Define to 1 if you have the `lstat' function. */
#undef HAVE_LSTAT

/* Define to 1 if you have the `lutimes' function. */
#undef HAVE_LUTIMES

/* Define to 1 if you have lzo lib */
#undef HAVE_LZO

Expand Down Expand Up @@ -943,6 +961,9 @@
/* Define to 1 if you have SVR3 signals */
#undef HAVE_USG_SIGHOLD

/* Define to 1 if you have the `utimes' function. */
#undef HAVE_UTIMES

/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H

Expand Down
14 changes: 13 additions & 1 deletion configure
Expand Up @@ -22864,7 +22864,19 @@ $as_echo "#define HAVE_SYS_POLL_H 1" >>confdefs.h
fi


for ac_func in strcasecmp select poll setenv putenv tcgetattr lstat lchown
for ac_func in strcasecmp select poll setenv putenv tcgetattr
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF

fi
done

for ac_func in lstat lchown lchmod utimes lutimes futimes futimens fchmod fchown
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
Expand Down

0 comments on commit 2b90a15

Please sign in to comment.