With automake, in kdelibs, there is a configure option --enable-dnotify. Does an equivalent exist in the cmake options?
If not, could this be part of the problem with several bug reports about konqueror not updating file changes?
Darrell
With automake, in kdelibs, there is a configure option --enable-dnotify. Does an equivalent exist in the cmake options?
If not, could this be part of the problem with several bug reports about konqueror not updating file changes?
I don't see HAVE_DNOTIFY declared anywhere in the cmake files.
Darrell
On Monday 09 January 2012 01:00:14 Darrell Anderson wrote:
With automake, in kdelibs, there is a configure option --enable-dnotify. Does an equivalent exist in the cmake options?
If not, could this be part of the problem with several bug reports about konqueror not updating file changes?
I don't see HAVE_DNOTIFY declared anywhere in the cmake files.
Yes, I think is not, should be added.
Darrell
With automake, in kdelibs, there is a configure option --enable-dnotify. Does an
equivalent exist
in the cmake options?
If not, could this be part of the problem with
several bug
reports about konqueror not updating file
changes?
I don't see HAVE_DNOTIFY declared anywhere in the
cmake files.
Yes, I think is not, should be added.
Okay. I won't pretend to understand cmake. This is as far as I get thus far:
In kdelibs/CMakeLists.txt, add:
OPTION( WITH_DNOTIFY "Enable DNOTIFY support" ON ) ... #### set some constants ######################### if( WITH_DNOTIFY ) set( HAVE_DNOTIFY 1 ) endif( ) ...
Are any validation tests required or is that snippet sufficient?
Darrell
Okay. I won't pretend to understand cmake. This is as far as I get thus far:
In kdelibs/CMakeLists.txt, add:
OPTION( WITH_DNOTIFY "Enable DNOTIFY support" ON ) ... #### set some constants ######################### if( WITH_DNOTIFY ) set( HAVE_DNOTIFY 1 ) endif( ) ...
Are any validation tests required or is that snippet sufficient?
Updated in GIT I see. :)
Darrell
Okay. I won't pretend to understand cmake. This is as far as I get thus far:
In kdelibs/CMakeLists.txt, add:
OPTION( WITH_DNOTIFY "Enable DNOTIFY support" ON ) ... #### set some constants ######################### if( WITH_DNOTIFY ) set( HAVE_DNOTIFY 1 ) endif( ) ...
Are any validation tests required or is that snippet sufficient?
Updated in GIT I see. :)
Darrell
Yes. dnotify is so old that I didn't bother adding support for it, but inotify is now active and should work even better.
Tim