quiet aclocal 1.8 warnings

This commit is contained in:
Glenn Maynard
2005-01-17 17:51:18 +00:00
parent 5d6eb1d236
commit c456148b37
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate.
dnl enables arguments --with-alsa-prefix=
dnl --with-alsa-enc-prefix=
dnl
AC_DEFUN(AM_PATH_ALSA,
AC_DEFUN([AM_PATH_ALSA],
[dnl Save the original CFLAGS, LDFLAGS, and LIBS
alsa_save_CFLAGS="$CFLAGS"
alsa_save_LDFLAGS="$LDFLAGS"
+1 -1
View File
@@ -1,4 +1,4 @@
AC_DEFUN(SM_AUDIO, [
AC_DEFUN([SM_AUDIO], [
AC_ARG_WITH(vorbis, AC_HELP_STRING([--without-vorbis], [Disable Vorbis support]), with_vorbis=$enableval, with_vorbis=yes)
+3 -3
View File
@@ -1,5 +1,5 @@
# See if we have a working backtrace_symbols.
AC_DEFUN(SM_FUNC_BACKTRACE_SYMBOLS,
AC_DEFUN([SM_FUNC_BACKTRACE_SYMBOLS],
[
AC_MSG_CHECKING(for working backtrace_symbols())
AC_TRY_RUN(
@@ -15,7 +15,7 @@ AC_DEFUN(SM_FUNC_BACKTRACE_SYMBOLS,
AC_MSG_RESULT($have_backtrace_symbols)
])
AC_DEFUN(SM_FUNC_CXA_DEMANGLE,
AC_DEFUN([SM_FUNC_CXA_DEMANGLE],
[
# Check for abi::__cxa_demangle (gcc 3.1+)
AC_MSG_CHECKING(for working cxa_demangle)
@@ -45,7 +45,7 @@ AC_DEFUN(SM_FUNC_CXA_DEMANGLE,
# To support backtraces in the crash handler, we need two things: a call to
# get backtrace pointers, and a way to convert them to symbols.
AC_DEFUN(SM_CHECK_CRASH_HANDLER,
AC_DEFUN([SM_CHECK_CRASH_HANDLER],
[
# See if we have a custom backtrace():
case $host in
+1 -1
View File
@@ -5,7 +5,7 @@ dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [,
dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES,
dnl pass to pkg-config
dnl
AC_DEFUN(AM_PATH_GTK_2_0,
AC_DEFUN([AM_PATH_GTK_2_0],
[dnl
dnl Get the cflags and libraries from pkg-config
dnl
+1 -1
View File
@@ -1,4 +1,4 @@
AC_DEFUN(SM_LUA, [
AC_DEFUN([SM_LUA], [
AC_CHECK_PROGS(LUA_CONFIG, [lua-config50 lua-config], "")
if test "$LUA_CONFIG" != ""; then
+1 -1
View File
@@ -1,4 +1,4 @@
AC_DEFUN(SM_X_WITH_OPENGL,
AC_DEFUN([SM_X_WITH_OPENGL],
[
AC_PATH_X
+1 -1
View File
@@ -8,7 +8,7 @@
dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS
dnl
AC_DEFUN(AM_PATH_SDL,
AC_DEFUN([AM_PATH_SDL],
[dnl
dnl Get the cflags and libraries from the sdl-config script
dnl
+1 -1
View File
@@ -2,7 +2,7 @@
# the resulting program actually runs, not whether the resulting TLS variables
# work properly; that check is done at runtime, since we can run binaries
# compiled with __thread on systems without TLS.
AC_DEFUN(SM_TLS,
AC_DEFUN([SM_TLS],
[
AC_MSG_CHECKING(for TLS)
AC_TRY_RUN( [ static __thread int val; int main() { return 0; } ], have_tls=yes,have_tls=no,have_tls=no )
+1 -1
View File
@@ -1,4 +1,4 @@
AC_DEFUN(SM_ZLIB,
AC_DEFUN([SM_ZLIB],
[
AC_CHECK_LIB(z, inflate, have_libz=yes, have_libz=no)
AC_CHECK_HEADER(zlib.h, have_libz_header=yes, have_libz_header=no)