71109a87e1
Originally committed to SVN as r6097.
29 lines
1 KiB
Text
29 lines
1 KiB
Text
AC_DEFUN([AC_AGI_COMPILE],[
|
|
aegisub_save_LIBS="$LIBS"
|
|
aegisub_save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $3"
|
|
LIBS="$LIBS $4"
|
|
AC_CACHE_CHECK(
|
|
[whether $1 works], [agi_cv_with_$2],
|
|
[AC_RUN_IFELSE([AC_LANG_SOURCE([$5])],
|
|
[eval agi_cv_with_$2="yes"],
|
|
[eval agi_cv_with_$2="no"],
|
|
[AS_IF([test $? -ne 0], [eval agi_cv_with_$2="no"], [eval agi_cv_with_$2="yes"])])])
|
|
CPPFLAGS="$aegisub_save_CPPFLAGS"
|
|
LIBS="$aegisub_save_LIBS"
|
|
])
|
|
|
|
AC_DEFUN([AC_AGI_LINK],[
|
|
aegisub_save_LIBS="$LIBS"
|
|
aegisub_save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $4"
|
|
LIBS="$LIBS $5"
|
|
AC_CHECK_HEADER([$3], [agi_cv_header="yes"], [agi_cv_header="no"])
|
|
AS_IF([test "x$agi_cv_header" = xyes],
|
|
[AC_CACHE_CHECK(
|
|
[whether $1 works], [agi_cv_with_$2],
|
|
[AC_LINK_IFELSE([AC_LANG_SOURCE([$6])], [eval agi_cv_with_$2="yes"], [eval agi_cv_with_$2="no"])])]
|
|
[eval agi_cv_with_$2="no"])
|
|
CPPFLAGS="$aegisub_save_CPPFLAGS"
|
|
LIBS="$aegisub_save_LIBS"
|
|
])
|