mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 07:12:01 +00:00
- Updated README for automake 1.8, and updated acinclude.m4
to remove some warnings from the new automake.
This commit is contained in:
parent
27a709ac82
commit
2012da9a05
3 changed files with 7 additions and 9 deletions
2
README
2
README
|
@ -5,7 +5,7 @@ Compiling
|
|||
---------
|
||||
|
||||
If you are checking this out from CVS, run ``./bootstrap'' first to set
|
||||
up configure. You will need autoconf 2.50, automake 1.7, libtool 1.4,
|
||||
up configure. You will need autoconf 2.50, automake 1.8, libtool 1.4,
|
||||
or greater. Then follow the instructions in INSTALL.
|
||||
|
||||
When specifying locations to arguments like --with-svgalib (i.e. all the
|
||||
|
|
10
acinclude.m4
10
acinclude.m4
|
@ -1,10 +1,8 @@
|
|||
dnl $Id$
|
||||
dnl
|
||||
dnl Copyright (c) 2002 The Quakeforge Project.
|
||||
|
||||
dnl Checks if function/macro va_copy() is available
|
||||
dnl Defines HAVE_VA_COPY on success.
|
||||
AC_DEFUN(AC_FUNC_VA_COPY,
|
||||
AC_DEFUN([AC_FUNC_VA_COPY],
|
||||
[AC_CACHE_CHECK([for va_copy], ac_cv_func_va_copy,
|
||||
[AC_TRY_LINK([
|
||||
#ifdef HAVE_STDARG_H
|
||||
|
@ -23,7 +21,7 @@ fi])
|
|||
|
||||
dnl Checks if function/macro __va_copy() is available
|
||||
dnl Defines HAVE__VA_COPY on success.
|
||||
AC_DEFUN(AC_FUNC__VA_COPY,
|
||||
AC_DEFUN([AC_FUNC__VA_COPY],
|
||||
[AC_CACHE_CHECK([for __va_copy], ac_cv_func__va_copy,
|
||||
[AC_TRY_LINK([
|
||||
#ifdef HAVE_STDARG_H
|
||||
|
@ -42,7 +40,7 @@ fi])
|
|||
|
||||
dnl Checks if va_list is an array
|
||||
dnl Devines VA_LIST_IS_ARRAY on success
|
||||
AC_DEFUN(AC_TYPE_VA_LIST,
|
||||
AC_DEFUN([AC_TYPE_VA_LIST],
|
||||
[AC_CACHE_CHECK([if va_list is an array], ac_cv_type_va_list_array,
|
||||
[AC_TRY_LINK([
|
||||
#ifdef HAVE_STDARG_H
|
||||
|
@ -70,7 +68,7 @@ fi])
|
|||
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
|
||||
|
|
|
@ -18,8 +18,8 @@ fi
|
|||
|
||||
# no version checking is done here, it's too hard and not worth the effort
|
||||
# when one can just read the README
|
||||
aclocal-1.7 && \
|
||||
aclocal && \
|
||||
autoheader && \
|
||||
libtoolize --copy --automake && \
|
||||
automake-1.7 --foreign --add-missing --copy && \
|
||||
automake --foreign --add-missing --copy && \
|
||||
autoconf
|
||||
|
|
Loading…
Reference in a new issue