mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / builds / unix / ft-munmap.m4
blob68b3361e2b1017e86bfcf900bbc98f0baa41e323
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
10 # fully.
12 # serial 2
14 AC_DEFUN([FT_MUNMAP_PARAM],
15   [AC_MSG_CHECKING([for munmap's first parameter type])
16    AC_COMPILE_IFELSE([
17        AC_LANG_SOURCE([[
19 #include <unistd.h>
20 #include <sys/mman.h>
21 int munmap(void *, size_t);
23        ]])
24      ],
25      [AC_MSG_RESULT([void *])
26       AC_DEFINE([MUNMAP_USES_VOIDP],
27         [],
28         [Define to 1 if the first argument of munmap is of type void *])],
29      [AC_MSG_RESULT([char *])])
30   ])
32 # end of ft-munmap.m4