View | Details | Raw Unified
Collapse All | Expand All

(-) gedit-2.18.2/configure.ac.old (-2 / +9 lines)
Line     Link Here 
remove shadow depend on libattr and make it user config'd
remove shadow depend on libattr and make it user config'd
 removes the shadow depend on libattr and makes it user configurable.
 removes the shadow depend on libattr and makes it user configurable.
 leaves the default to yes as is currently in gedit, however it fails
 leaves the default to yes as is currently in gedit, however it fails
 if libattr is not found so that it's not a shadow depend.
 if libattr is not found so that it's not a shadow depend.
 Lines 138-145    Link Here 
dnl ================================================================
dnl ================================================================
dnl libattr checks
dnl libattr checks
dnl ================================================================
dnl ================================================================
AC_ARG_WITH([attr],
AC_CHECK_LIB(attr, attr_copy_fd)
	AS_HELP_STRING([--without-attr],[Don't use libattr support]),
	[],
	[with_attr=yes])
if test "x$with_attr" = "xyes"; then
	AC_CHECK_LIB([attr], [attr_copy_fd], [],
		AC_MSG_ERROR([*** attr library (libattr) not found]))
fi
dnl ================================================================
dnl ================================================================
dnl Start of pkg-config checks
dnl Start of pkg-config checks