summaryrefslogtreecommitdiff
path: root/m4/djgpp.m4
blob: 607c8e59bff94197ddcd0da7113e9e15c827a939 (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])