File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 99 exit 1
1010fi
1111
12- echo -n " Checking for Apache headers using apx2 ... "
12+ echo -n " Checking for Apache headers using apxs2 ... "
1313apache_include_dir=` apxs2 -q INCLUDEDIR 2> /dev/null`
1414RETVAL=$?
1515if [ $RETVAL -eq 0 ]
1616then
1717 CORE_INCS=" $CORE_INCS $apache_include_dir "
1818 echo " Ok"
1919else
20- echo " FAIL"
21- echo " Aborting. Apache apx2 is not installed or fails to point\
20+ echo -n " Checking for Apache headers using apxs... "
21+ apache_include_dir=` apxs -q INCLUDEDIR 2> /dev/null`
22+ RETVAL=$?
23+ if [ $RETVAL -eq 0 ]
24+ then
25+ CORE_INCS=" $CORE_INCS $apache_include_dir "
26+ echo " Ok"
27+ else
28+ echo " Aborting. Apache apxs2/apxs is not installed or fails to point\
2229Apache headers."
23- exit 1;
30+ exit 1;
2431fi
2532
2633missing=" "
You can’t perform that action at this time.
0 commit comments