We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 700f691 commit 7236dfeCopy full SHA for 7236dfe
ext/gettext/config.m4
@@ -18,15 +18,17 @@ if test "$PHP_GETTEXT" != "no"; then
18
O_LDFLAGS=$LDFLAGS
19
LDFLAGS="$LDFLAGS -L$GETTEXT_LIBDIR"
20
AC_CHECK_LIB(intl, bindtextdomain, [
21
- GETTEXT_LIBS=intl
22
- GETTEXT_CHECK_IN_LIB=intl
23
- ],
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
- ])
+ GETTEXT_LIBS=intl
+ GETTEXT_CHECK_IN_LIB=intl
+ ],
+ [
+ AC_CHECK_LIB(c, bindtextdomain, [
+ GETTEXT_LIBS=
+ GETTEXT_CHECK_IN_LIB=c
+ ],[
+ AC_MSG_ERROR(Unable to find required gettext library)
30
+ ])
31
+ ]
32
)
33
34
AC_DEFINE(HAVE_LIBINTL,1,[ ])
0 commit comments