Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / os_cppflags.m4
blobcd8ae8ba1655e8d5de4c66c2773e117dc381b6a3
1 dnl ######################################################################
2 dnl Specify additional cpp options based on the OS and the compiler
3 AC_DEFUN([AMU_OS_CPPFLAGS],
5 AC_CACHE_CHECK(additional preprocessor flags,
6 ac_cv_os_cppflags,
8 case "${host_os}" in
9 # off for now, posix may be a broken thing for nextstep3...
10 #       nextstep* )
11 #               ac_cv_os_cppflags="-D_POSIX_SOURCE"
12 #               ;;
13         * )     ac_cv_os_cppflags="" ;;
14 esac
16 CPPFLAGS="$CPPFLAGS $ac_cv_os_cppflags"
18 dnl ======================================================================