Skip to content

Commit 730fd74

Browse files
authored
ext/gettext: resolve underqouting that breaks with autoconf 2.72
1 parent 49fbbea commit 730fd74

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

ext/gettext/config.m4

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ if test "$PHP_GETTEXT" != "no"; then
2121
GETTEXT_LIBS=intl
2222
GETTEXT_CHECK_IN_LIB=intl
2323
],
24-
AC_CHECK_LIB(c, bindtextdomain, [
25-
GETTEXT_LIBS=
26-
GETTEXT_CHECK_IN_LIB=c
27-
],[
28-
AC_MSG_ERROR(Unable to find required gettext library)
29-
])
24+
[
25+
AC_CHECK_LIB(c, bindtextdomain, [
26+
GETTEXT_LIBS=
27+
GETTEXT_CHECK_IN_LIB=c
28+
],[
29+
AC_MSG_ERROR(Unable to find required gettext library)
30+
])
31+
]
3032
)
3133

3234
AC_DEFINE(HAVE_LIBINTL,1,[ ])

0 commit comments

Comments
 (0)