diff options
author | François Andriot <albator78@libertysurf.fr> | 2019-11-03 10:14:46 +0100 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2019-11-03 11:16:29 +0100 |
commit | c3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0 (patch) | |
tree | 05b16c4c316aad9b0572275b8c32868b2aef7965 /redhat/applications/amarok/amarok-3.5.13-fix_inotify_support.patch | |
parent | c9bb196e3bc20aef636c7478727f24aa7656b3cf (diff) | |
download | tde-packaging-c3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0.tar.gz tde-packaging-c3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0.zip |
RPM: remove lots of obsolete 3.5.13.x files
Diffstat (limited to 'redhat/applications/amarok/amarok-3.5.13-fix_inotify_support.patch')
-rw-r--r-- | redhat/applications/amarok/amarok-3.5.13-fix_inotify_support.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/redhat/applications/amarok/amarok-3.5.13-fix_inotify_support.patch b/redhat/applications/amarok/amarok-3.5.13-fix_inotify_support.patch deleted file mode 100644 index 46798b363..000000000 --- a/redhat/applications/amarok/amarok-3.5.13-fix_inotify_support.patch +++ /dev/null @@ -1,37 +0,0 @@ -commit 899586da27ae7a85cea8637849a964a88f3df8b2 -Author: Timothy Pearson <kb9vqf@pearsoncomputing.net> -Date: 1326222183 -0600 - - Fix inotify detection - -diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake -index 0e14311..090c73b 100644 ---- a/ConfigureChecks.cmake -+++ b/ConfigureChecks.cmake -@@ -21,7 +21,25 @@ check_type_size( "long" SIZEOF_LONG BUILTIN_TYPES_ONLY ) - - check_include_file( stdint.h HAVE_STDINT_H ) - check_include_file( systems.h HAVE_SYSTEMS_H ) --check_include_file( linux/inotify.h HAVE_INOTIFY ) -+ -+##### check for inotify ########################### -+ -+# if( WITH_INOTIFY ) -+ check_include_file( "inotify.h" INOTIFY_FOUND ) -+ check_include_file( "sys/inotify.h" INOTIFY_SYS_FOUND ) -+ if( NOT INOTIFY_FOUND ) -+ if( NOT INOTIFY_SYS_FOUND ) -+ message(FATAL_ERROR "\ninotify support was requested, but inotify was not found on your system" ) -+ endif( NOT INOTIFY_SYS_FOUND ) -+ endif( NOT INOTIFY_FOUND ) -+ if( INOTIFY_FOUND ) -+ set( HAVE_INOTIFY 1 ) -+ endif( INOTIFY_FOUND ) -+ if( INOTIFY_SYS_FOUND ) -+ set( HAVE_INOTIFY 1 ) -+ set( HAVE_SYS_INOTIFY 1 ) -+ endif( INOTIFY_SYS_FOUND ) -+# endif( ) - - check_function_exists( statvfs HAVE_STATVFS ) - |