utimbuf.m4
来自「indent为linux下代码自动格式化工具」· M4 代码 · 共 24 行
M4
24 行
dnldnl Macro: indent_UTIMBUFdnldnl Check if we have `struct utimbuf'.dnlAC_DEFUN(indent_UTIMBUF,[dnl Do we have a working utime.h?AC_CACHE_CHECK([if struct utimbuf needs -posix], unet_cv_sys_utimbuf_needs_posix,[AC_TRY_COMPILE([#include <sys/types.h>#include <utime.h>],[struct utimbuf buf;], unet_cv_sys_utimbuf_needs_posix=no,[OLDCFLAGS="$CFLAGS"CFLAGS="$CFLAGS -posix"AC_TRY_COMPILE([#include <sys/types.h>#include <utime.h>],[struct utimbuf buf;], unet_cv_sys_utimbuf_needs_posix=yes,unet_cv_sys_utimbuf_needs_posix=no)CFLAGS="$OLDCFLAGS"])])if test $unet_cv_sys_utimbuf_needs_posix = yes; then CFLAGS="$CFLAGS -posix"fi])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?