1 ## FreeType specific autoconf tests
3 # Copyright 2002, 2003, 2004 by
4 # David Turner, Robert Wilhelm, and Werner Lemberg.
6 # This file is part of the FreeType project, and may only be used, modified,
7 # and distributed under the terms of the FreeType project license,
8 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
9 # indicate that you have read the license and understand and accept it
14 AC_DEFUN([FT_MUNMAP_PARAM],
15 [AC_MSG_CHECKING([for munmap's first parameter type])
21 int munmap(void *, size_t);
25 [AC_MSG_RESULT([void *])
26 AC_DEFINE([MUNMAP_USES_VOIDP],
28 [Define to 1 if the first argument of munmap is of type void *])],
29 [AC_MSG_RESULT([char *])])