Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 577810 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure (-1 / +18 lines)
Lines 4474-4479 if test "$fortify_source" != "no"; then Link Here
4474
  fi
4474
  fi
4475
fi
4475
fi
4476
4476
4477
########################################
4478
# check if struct fsxattr is available
4479
4480
have_fsxattr=no
4481
cat > $TMPC << EOF
4482
#include <linux/fs.h>
4483
struct fsxattr foo;
4484
int main(void) {
4485
  return 0;
4486
}
4487
EOF
4488
if compile_prog "" "" ; then
4489
    have_fsxattr=yes
4490
fi
4491
4477
##########################################
4492
##########################################
4478
# End of CC checks
4493
# End of CC checks
4479
# After here, no more $cc or $ld runs
4494
# After here, no more $cc or $ld runs
Lines 5137-5142 fi Link Here
5137
if test "$have_ifaddrs_h" = "yes" ; then
5152
if test "$have_ifaddrs_h" = "yes" ; then
5138
    echo "HAVE_IFADDRS_H=y" >> $config_host_mak
5153
    echo "HAVE_IFADDRS_H=y" >> $config_host_mak
5139
fi
5154
fi
5155
if test "$have_fsxattr" = "yes" ; then
5156
    echo "HAVE_FSXATTR=y" >> $config_host_mak
5157
fi
5140
if test "$vte" = "yes" ; then
5158
if test "$vte" = "yes" ; then
5141
  echo "CONFIG_VTE=y" >> $config_host_mak
5159
  echo "CONFIG_VTE=y" >> $config_host_mak
5142
  echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
5160
  echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
5143
- 

Return to bug 577810