| … | |
… | |
| 60 | )] |
60 | )] |
| 61 | ) |
61 | ) |
| 62 | AC_MSG_RESULT([$va_copy]) |
62 | AC_MSG_RESULT([$va_copy]) |
| 63 | if test x"$va_copy" != xva_copy ; then |
63 | if test x"$va_copy" != xva_copy ; then |
| 64 | AC_DEFINE_UNQUOTED([va_copy], [$va_copy], |
64 | AC_DEFINE_UNQUOTED([va_copy], [$va_copy], |
| 65 | [va_copy macro proviced by gcc (undefined if its va_copy, else defined |
65 | [Define to name of va_copy macro proviced by gcc if its not `va_copy'.] |
| 66 | to proper name)] |
|
|
| 67 | ) |
66 | ) |
| 68 | fi |
67 | fi |
| 69 | |
68 | |
| 70 | dnl check if we have 32bit or 64bit output |
69 | dnl Check if we want SELinux support |
|
|
70 | AC_ARG_ENABLE([selinux], |
|
|
71 | AS_HELP_STRING([--enable-selinux], |
|
|
72 | [enable SELinux support (default=disabled)]), |
|
|
73 | [enable_selinux="$enableval"], |
|
|
74 | [enable_selinux="no"] |
|
|
75 | ) |
|
|
76 | |
|
|
77 | if test x"$enable_selinux" != xno ; then |
|
|
78 | AC_DEFINE([WANT_SELINUX], [], [Define if SELinux support is required.]) |
|
|
79 | fi |
|
|
80 | |
|
|
81 | dnl Check if we want debugging |
| 71 | AC_ARG_ENABLE([debug], |
82 | AC_ARG_ENABLE([debug], |
| 72 | AS_HELP_STRING([--enable-debug], |
83 | AS_HELP_STRING([--enable-debug], |
| 73 | [enable debugging - very verbose (default=disabled)]), |
84 | [enable debugging - very verbose (default=disabled)]), |
| 74 | [enable_debug="$enableval"], |
85 | [enable_debug="$enableval"], |
| 75 | [enable_debug="no"] |
86 | [enable_debug="no"] |