diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-18 18:58:23 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-18 18:58:23 -0500 |
commit | 30b0af1f01cdbfcc51a56943e8c091bc8991f83a (patch) | |
tree | c9e257fb983d474f8f2ccd9753c76c8e2c4e5b46 /CMakeLists.txt | |
parent | a37d43794f4369915068f585f6ff4720e93dd2af (diff) | |
download | tdelibs-30b0af1f01cdbfcc51a56943e8c091bc8991f83a.tar.gz tdelibs-30b0af1f01cdbfcc51a56943e8c091bc8991f83a.zip |
Fix URL handling of media/builtin-* mimetypes
This partially resolves Bug 976
Add missing ACL support to CMake build files
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0eabf0270..d6d9f2441 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,6 +174,7 @@ check_include_file( "stdlib.h" HAVE_STDLIB_H ) check_include_file( "strings.h" HAVE_STRINGS_H ) check_include_file( "string.h" HAVE_STRING_H ) check_include_file( "sysent.h" HAVE_SYSENT_H ) +check_include_file( "sys/acl.h" HAVE_SYS_ACL_H ) check_include_file( "sys/bitypes.h" HAVE_SYS_BITYPES_H ) check_include_file( "sys/dir.h" HAVE_SYS_DIR_H ) check_include_file( "sys/filio.h" HAVE_SYS_FILIO_H ) @@ -190,7 +191,7 @@ check_include_file( "sys/stat.h" HAVE_SYS_STAT_H ) check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H ) check_include_file( "sys/types.h" HAVE_SYS_TYPES_H ) check_include_file( "sys/ucred.h" HAVE_SYS_UCRED_H ) -check_include_file( "sys/xattr.h" sys/xattr.h ) +check_include_file( "sys/xattr.h" HAVE_SYS_XATTR_H ) check_include_file( "termios.h" HAVE_TERMIOS_H ) check_include_file( "termio.h" HAVE_TERMIO_H ) check_include_file( "unistd.h" HAVE_UNISTD_H ) @@ -204,6 +205,12 @@ if( HAVE_SYS_TIME_H AND HAVE_TIME_H ) set( TIME_WITH_SYS_TIME 1 ) endif( HAVE_SYS_TIME_H AND HAVE_TIME_H ) +if( HAVE_SYS_ACL_H ) + set( USE_POSIX_ACL 1 ) +endif( HAVE_SYS_ACL_H ) + +check_include_file( "acl/libacl.h" HAVE_NON_POSIX_ACL_EXTENSIONS ) + check_include_file( "valgrind/memcheck.h" HAVE_VALGRIND_MEMCHECK_H ) check_include_file( "values.h" HAVE_VALUES_H ) check_include_file( "X11/extensions/shape.h" HAVE_X11_EXTENSIONS_SHAPE_H ) |