diff options
author | Raja R Harinath <harinath@src.gnome.org> | 1998-07-30 04:38:32 +0800 |
---|---|---|
committer | Raja R Harinath <harinath@src.gnome.org> | 1998-07-30 04:38:32 +0800 |
commit | f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0 (patch) | |
tree | 4fad1a300cb1fa5a5084696e438cf4bde098a4da | |
parent | e66556dbdcd2524c69167d4689b5f8a5cda8386c (diff) | |
download | gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.tar gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.tar.gz gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.tar.bz2 gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.tar.lz gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.tar.xz gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.tar.zst gsoc2013-evolution-f55db51d4bd3346c61ed3e5f5a0b0318c041d1b0.zip |
Check for functions that `error.c' looks for.
* gnome-support.m4: Check for functions that `error.c' looks for.
svn path=/trunk/; revision=291
-rw-r--r-- | macros/ChangeLog | 4 | ||||
-rw-r--r-- | macros/gnome-support.m4 | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 631b312efb..f717434250 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,7 @@ +1998-07-29 Raja R Harinath <harinath@cs.umn.edu> + + * gnome-support.m4: Check for functions that `error.c' looks for. + 1998-07-29 Martin Baulig <martin@home-of-linux.org> * gnome-fileutils.m4 (AM_FUNC_ERROR_AT_LINE): Removed. diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4 index 732d05c76d..c16b6892ae 100644 --- a/macros/gnome-support.m4 +++ b/macros/gnome-support.m4 @@ -81,6 +81,8 @@ AC_DEFUN([GNOME_SUPPORT_CHECKS],[ AC_REPLACE_FUNCS(memmove mkstemp scandir strcasecmp strerror strndup strnlen) AC_REPLACE_FUNCS(strtok_r strtod strtol strtoul vasprintf) + # to include `error.c' error.c has some HAVE_* checks + AC_CHECK_FUNCS(vprintf doprnt sterror_r) AM_FUNC_ERROR_AT_LINE # see if we need to declare some functions. Solaris is notorious for |