Skip to content

Commit dcb0dae

Browse files
author
foobar
committed
- Fix the error message if apxs|2 is fubar.
1 parent fb232d9 commit dcb0dae

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

sapi/apache/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ AC_ARG_WITH(apxs,
2626
AC_MSG_RESULT([2. Apache was not compiled with DSO support (--enable-module=so);])
2727
AC_MSG_RESULT([3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs])
2828
AC_MSG_RESULT([The output of $APXS follows])
29-
$APXS
29+
$APXS -q CFLAGS
3030
AC_MSG_ERROR([Aborting])
3131
fi
3232

sapi/apache2filter/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ AC_ARG_WITH(apxs2filter,
2727
AC_MSG_RESULT([3. Apache was not built using --enable-so (the apxs usage page is displayed)])
2828
AC_MSG_RESULT()
2929
AC_MSG_RESULT([The output of $APXS follows:])
30-
$APXS
30+
$APXS -q CFLAGS
3131
AC_MSG_ERROR([Aborting])
3232
fi
3333

sapi/apache2handler/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ AC_ARG_WITH(apxs2,
2727
AC_MSG_RESULT([3. Apache was not built using --enable-so (the apxs usage page is displayed)])
2828
AC_MSG_RESULT()
2929
AC_MSG_RESULT([The output of $APXS follows:])
30-
$APXS
30+
$APXS -q CFLAGS
3131
AC_MSG_ERROR([Aborting])
3232
fi
3333

0 commit comments

Comments
 (0)