diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2015-12-14 15:55:53 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2015-12-14 16:17:37 +0900 |
commit | a8d964ee3ae1acc7d0a9ed43e5f1e363d26da090 (patch) | |
tree | e25c4e9b888d173b3109ffed48153499ee00c531 /configure.ac | |
parent | 02e836feb7a708522369a8fb46a3ade8688db655 (diff) | |
download | tar-a8d964ee3ae1acc7d0a9ed43e5f1e363d26da090.tar.gz tar-a8d964ee3ae1acc7d0a9ed43e5f1e363d26da090.tar.bz2 tar-a8d964ee3ae1acc7d0a9ed43e5f1e363d26da090.zip |
Bump to 1.17tizen_4.0.m1_releasesubmit/tizen_common/20160104.112601submit/tizen_base/20151228.234606submit/tizen_4.0_base/20170828.000001submit/tizen_4.0_base/20170828.000000submit/tizen_4.0_base/20170811.071500submit/tizen_3.0_base/20161028.062326submit/tizen_3.0.m2_base/20170104.073748submit/tizen/20151228.102125submit/tizen/20151223.034856accepted/tizen/common/20160107.114051accepted/tizen/base/20151229.114054accepted/tizen/4.0/base/20170828.221403accepted/tizen/4.0/base/20170811.093101accepted/tizen/3.0/base/20161028.103431accepted/tizen/3.0.m2/base/20170104.082123tizen_3.0_basetizen_3.0.m2_basetizen_3.0tizenaccepted/tizen_commonaccepted/tizen_3.0_baseaccepted/tizen_3.0.m2_base
sync with tizen 2.4
run unit test
Change-Id: Iae1c58a660ee7dad0694163929e5b9940a0ec9c8
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c1d3fb9..e52423e 100644 --- a/configure.ac +++ b/configure.ac @@ -40,7 +40,7 @@ AC_CHECK_HEADERS_ONCE(fcntl.h linux/fd.h memory.h net/errno.h \ sys/param.h sys/device.h sys/filio.h sys/gentape.h \ sys/inet.h sys/io/trioctl.h \ sys/mtio.h sys/time.h sys/tprintf.h sys/tape.h \ - unistd.h locale.h) + unistd.h locale.h selinux/selinux.h attr/xattr.h sys/acl.h) AC_CHECK_HEADERS([sys/buf.h], [], [], [#if HAVE_SYS_PARAM_H @@ -88,6 +88,13 @@ gl_INIT tar_PAXUTILS AC_CHECK_FUNCS(fsync getdtablesize lstat mkfifo readlink strerror symlink setlocale utimes) +AC_CHECK_FUNCS(getxattr fgetxattr lgetxattr \ + setxattr fsetxattr lsetxattr \ + listxattr flistxattr llistxattr, + AC_DEFINE(HAVE_XATTRS,,[Define if we have a working extended attributes]),) +AC_CHECK_LIB(selinux, getfilecon) +AC_CHECK_LIB(acl, acl_get_fd) + AC_CHECK_DECLS([getgrgid],,, [#include <grp.h>]) AC_CHECK_DECLS([getpwuid],,, [#include <pwd.h>]) AC_CHECK_DECLS([time],,, [#include <time.h>]) @@ -203,6 +210,8 @@ AC_DEFINE_UNQUOTED(DEFAULT_QUOTING_STYLE, $DEFAULT_QUOTING_STYLE, # Iconv AM_ICONV AC_CHECK_HEADERS(iconv.h) +AC_CHECK_HEADERS(selinux/selinux.h) +AC_CHECK_HEADERS(attr/xattr.h) AC_CHECK_TYPE(iconv_t,:, AC_DEFINE(iconv_t, int, [Conversion descriptor type]), |