diff options
author | OBATA Akio <obache@wizdas.com> | 2020-01-31 18:29:23 +0900 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-01-31 12:50:50 +0000 |
commit | 08329d90148d57333b21ef5e83d49b8f5c8db3c0 (patch) | |
tree | feacb80d3470cb744269eb19fa56bfd04c466840 /CMakeLists.txt | |
parent | 482eea48c70a29b908053263176318f75b96a173 (diff) | |
download | arts-08329d90148d57333b21ef5e83d49b8f5c8db3c0.tar.gz arts-08329d90148d57333b21ef5e83d49b8f5c8db3c0.zip |
Drop `unsigned long int` case for the first argment type of ioctl(2)
It is identically same as `unsigned long`.
Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b138b7..620f99c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,7 +117,6 @@ set( CMAKE_REQUIRED_LIBRARIES ${bak_CMAKE_REQUIRED_LIBRARIES} ) unset( bak_CMAKE_REQUIRED_LIBRARIES ) check_prototype_definition( ioctl "int ioctl(int d, int request, ...)" "-1" "unistd.h;sys/ioctl.h" HAVE_IOCTL_INT_INT_DOTS ) check_prototype_definition( ioctl "int ioctl(int d, unsigned long request, ...)" "-1" "unistd.h;sys/ioctl.h" HAVE_IOCTL_INT_ULONG_DOTS ) -check_prototype_definition( ioctl "int ioctl(int d, unsigned long int request, ...)" "-1" "unistd.h;sys/ioctl.h" HAVE_IOCTL_INT_ULONGINT_DOTS ) ##### check for audiofile ####################### |