diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-01-23 20:53:39 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-01-23 20:53:39 -0800 |
commit | d6974efa708eff7adf1768aa6a792a12d7dfbb7b (patch) | |
tree | a39eba95a3448eb567453c24c84ed90461040d42 /m4/gnulib-common.m4 | |
parent | 8ab7032073626f5153c4a42f6ecb4697efc80b8b (diff) | |
download | emacs-d6974efa708eff7adf1768aa6a792a12d7dfbb7b.tar.gz emacs-d6974efa708eff7adf1768aa6a792a12d7dfbb7b.tar.bz2 emacs-d6974efa708eff7adf1768aa6a792a12d7dfbb7b.zip |
Remove HAVE_RAW_DECL_CHOWN etc. from config.h
Diffstat (limited to 'm4/gnulib-common.m4')
-rw-r--r-- | m4/gnulib-common.m4 | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/m4/gnulib-common.m4 b/m4/gnulib-common.m4 index c4f41f180ba..ecbf33694e2 100644 --- a/m4/gnulib-common.m4 +++ b/m4/gnulib-common.m4 @@ -1,4 +1,4 @@ -# gnulib-common.m4 serial 22 +# gnulib-common.m4 serial 23 dnl Copyright (C) 2007-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -102,6 +102,16 @@ AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [Define to 1 when the gnulib module $1 should be tested.]) ]) +# gl_ASSERT_NO_GNULIB_POSIXCHECK +# asserts that there will never be a need to #define GNULIB_POSIXCHECK. +# and thereby enables an optimization of configure and config.h. +# Used by Emacs. +AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK], +[ + dnl Override gl_WARN_ON_USE_PREPARE. + AC_DEFUN([gl_WARN_ON_USE_PREPARE], []) +]) + # gl_ASSERT_NO_GNULIB_TESTS # asserts that there will be no gnulib tests in the scope of the configure.ac # and thereby enables an optimization of config.h. |