diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-29 22:36:07 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-29 22:36:07 +0800 |
commit | b8b4901eba7cde41f0d7776f63ffac3eadf7e001 (patch) | |
tree | df7136601ede392b900248c202dcade232f9f690 /configure.in | |
parent | d1fb1edd57e2b64f1a8500c6fa460f194817d1d5 (diff) | |
download | gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.tar gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.tar.gz gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.tar.bz2 gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.tar.lz gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.tar.xz gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.tar.zst gsoc2013-epiphany-b8b4901eba7cde41f0d7776f63ffac3eadf7e001.zip |
Add check for 'mkdtemp', since solaris doesn't have it.
2004-05-29 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
Add check for 'mkdtemp', since solaris doesn't have it.
* lib/ephy-file-helpers.c: (ephy_file_tmp_dir):
Error out if we don't have mkdtemp.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 50ec6b32c..4f2730057 100644 --- a/configure.in +++ b/configure.in @@ -106,6 +106,13 @@ fi AM_GCONF_SOURCE_2 +dnl ****************** +dnl Portability checks +dnl ****************** + +AC_CHECK_FUNCS(mkdtemp) + +dnl ************************************************************************* dnl This is from Mozilla's configure.in. They set almost all the config stuff dnl they need in mozilla-config.h Except for this compiler flag, which can't dnl go in mozilla-config.h So we check the flag too and now we can include |