diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-24 10:28:06 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-24 10:31:23 -0700 |
commit | 9ce482da3960ee43decee41fba53b78c12c3e52c (patch) | |
tree | f7e77a4a2154a3f259fc41f5c2282a752e4ba200 /rt/configure.ac | |
parent | 6894828ab5a66e53ad6945cc14e6cd9f9c3b67f7 (diff) |
rt 4.2.13 ticket#13852
Diffstat (limited to 'rt/configure.ac')
-rw-r--r-- | rt/configure.ac | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/rt/configure.ac b/rt/configure.ac index 8fd2e58aa..4c7995aa3 100644 --- a/rt/configure.ac +++ b/rt/configure.ac @@ -34,6 +34,16 @@ if test "$PERL" = 'not found'; then AC_MSG_ERROR([cannot use $PACKAGE_NAME without perl]) fi +dnl BSD find uses -perm +xxxx, GNU find has deprecated this syntax in favour of +dnl -perm /xxx. +AC_MSG_CHECKING([checking version of find]) +AS_IF([find --version 2>&1 | grep 'GNU'], + [ FINDPERM="/" + AC_MSG_RESULT([configuring for GNU find]) ], + [ FINDPERM="+" + AC_MSG_RESULT([configuring for BSD find]) ]) + +AC_SUBST([FINDPERM]) dnl WEB_HANDLER AC_ARG_WITH(web-handler, @@ -461,6 +471,8 @@ AC_CONFIG_FILES([ etc/RT_Config.pm lib/RT/Generated.pm t/data/configs/apache2.2+mod_perl.conf - t/data/configs/apache2.2+fastcgi.conf], + t/data/configs/apache2.2+fastcgi.conf + t/data/configs/apache2.4+mod_perl.conf + t/data/configs/apache2.4+fastcgi.conf], ) AC_OUTPUT |