Skip to content

Commit 1643548

Browse files
committed
patch 7.4.1172
Problem: Configure is overly positive. Solution: Insert "test".
1 parent 2e23014 commit 1643548

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

src/auto/configure

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7249,11 +7249,17 @@ if test "$enable_channel" = "yes"; then
72497249
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
72507250
$as_echo "no" >&6; }
72517251
else
7252-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
7252+
if test "$enable_netbeans" = "yes"; then
7253+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, netbeans also disabled" >&5
7254+
$as_echo "yes, netbeans also disabled" >&6; }
7255+
enable_netbeans="no"
7256+
else
7257+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
72537258
$as_echo "yes" >&6; }
7259+
fi
72547260
fi
72557261

7256-
if test "$enable_netbeans" = "yes" -o "$enable_channel" = "yes"; then
7262+
if test "$enable_channel" = "yes"; then
72577263
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
72587264
$as_echo_n "checking for socket in -lsocket... " >&6; }
72597265
if ${ac_cv_lib_socket_socket+:} false; then :

src/configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1950,14 +1950,14 @@ if test "$enable_channel" = "yes"; then
19501950
AC_MSG_RESULT(no)
19511951
else
19521952
if test "$enable_netbeans" = "yes"; then
1953-
AC_MSG_RESULT(yes, netbeans also disabled)
1953+
AC_MSG_RESULT([yes, netbeans also disabled])
19541954
enable_netbeans="no"
19551955
else
19561956
AC_MSG_RESULT(yes)
19571957
fi
19581958
fi
19591959

1960-
if "$enable_channel" = "yes"; then
1960+
if test "$enable_channel" = "yes"; then
19611961
dnl On Solaris we need the socket and nsl library.
19621962
AC_CHECK_LIB(socket, socket)
19631963
AC_CHECK_LIB(nsl, gethostbyname)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
1172,
744746
/**/
745747
1171,
746748
/**/

0 commit comments

Comments
 (0)