summaryrefslogtreecommitdiff
path: root/m4/djgpp.m4
blob: 037945233e772e13d4b94798b61328289bf3c7cd (plain)
1
2
3
4
5
6
7
8
9
dnl Check for DJGPP. we use DJ_GPP as the variable
dnl EXEEXXT
AC_DEFUN([AC_DJGPP],
[AC_CACHE_CHECK(for DJGPP environment, ac_cv_djgpp,
[AC_TRY_COMPILE(,[ return __DJGPP__;],
ac_cv_djgpp=yes, ac_cv_djgpp=no)
rm -f conftest*])
DJ_GPP=
test "$ac_cv_djgpp" = yes && DJ_GPP=yes])