Skip to content

Commit d19b61f

Browse files
authored
Merge pull request #129 from micwoj92/master
update obsolete macros
2 parents 8c081e0 + c9d09f6 commit d19b61f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configure.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
#
1818

1919
dnl Process this file with autoconf to produce a configure script.
20-
AC_INIT(src/mod_python.c)
20+
AC_INIT
21+
AC_CONFIG_SRCDIR([src/mod_python.c])
2122

2223
# includes
2324
INCLUDES="-I`pwd`/src/include"
@@ -42,14 +43,13 @@ AC_MSG_CHECKING(your blood pressure)
4243
AC_MSG_RESULT([a bit high, but we can proceed])
4344

4445
## The goal is to find apxs
45-
AC_CHECKING(whether apxs is available)
46+
AS_MESSAGE([checking whether apxs is available...])
4647
AC_SUBST(APXS)
4748
AC_SUBST(DSO)
4849
AC_SUBST(ALL)
4950

5051
# check for --with-apxs
51-
AC_ARG_WITH(apxs, AC_HELP_STRING([--with-apxs=NAME],
52-
[name of the apxs executable [[apxs]]]),
52+
AC_ARG_WITH(apxs, AS_HELP_STRING([--with-apxs=NAME],[name of the apxs executable [[apxs]]]),
5353
[APXS="$with_apxs"])
5454

5555
if test -z "${APXS}"; then

0 commit comments

Comments
 (0)