Skip to content

Commit 0039801

Browse files
committed
updated for version 7.4.255
Problem: Configure check for smack doesn't work with all shells. (David Larson) Solution: Remove spaces in set command.
1 parent d41aeee commit 0039801

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/auto/configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4637,7 +4637,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
46374637
$as_echo "yes" >&6; }
46384638
else
46394639
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4640-
$as_echo "no" >&6; }; enable_smack = "no"
4640+
$as_echo "no" >&6; }; enable_smack="no"
46414641
fi
46424642
rm -f conftest*
46434643

@@ -9303,7 +9303,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
93039303
$as_echo "yes" >&6; }
93049304
else
93059305
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no; xim has been disabled" >&5
9306-
$as_echo "no; xim has been disabled" >&6; }; enable_xim = "no"
9306+
$as_echo "no; xim has been disabled" >&6; }; enable_xim="no"
93079307
fi
93089308
rm -f conftest*
93099309

src/configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ if test "$enable_smack" = "yes"; then
405405
AC_MSG_CHECKING(for XATTR_NAME_SMACKEXEC in linux/xattr.h)
406406
AC_EGREP_CPP(XATTR_NAME_SMACKEXEC, [#include <linux/xattr.h>],
407407
AC_MSG_RESULT(yes),
408-
AC_MSG_RESULT(no); enable_smack = "no")
408+
AC_MSG_RESULT(no); enable_smack="no")
409409
fi
410410
if test "$enable_smack" = "yes"; then
411411
AC_CHECK_LIB(attr, setxattr,
@@ -2643,7 +2643,7 @@ if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF" -o -z "$SKIP_
26432643
AC_MSG_CHECKING(for XIMText in X11/Xlib.h)
26442644
AC_EGREP_CPP(XIMText, [#include <X11/Xlib.h>],
26452645
AC_MSG_RESULT(yes),
2646-
AC_MSG_RESULT(no; xim has been disabled); enable_xim = "no")
2646+
AC_MSG_RESULT(no; xim has been disabled); enable_xim="no")
26472647
fi
26482648
CPPFLAGS=$cppflags_save
26492649

src/version.c

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

735735
static int included_patches[] =
736736
{ /* Add new patch number below this line */
737+
/**/
738+
255,
737739
/**/
738740
254,
739741
/**/

0 commit comments

Comments
 (0)