1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00
Go to file
Cesare Tirabassi 8be18483e3 Fix LP: #525926; conky sigsegv if config file is deleted
Basically, we only relod if the file is modified but still handle the case
where the watch gets lost. Maybe we should just ignore IN_IGNORE altogether?
(cherry picked from commit 085c39d394)
2010-02-22 22:48:59 +01:00
cmake Fix using the wireless-vars 2010-02-20 17:59:51 +01:00
data When building without x11, also disable xdamage, own_window, xdbe, xft, imlib2, argb and remove x11-related options from the builtin config 2010-01-17 16:15:59 +01:00
doc Add --for-scripts support 2010-02-20 02:25:38 +01:00
extras $memwithbuffers object and bar (sf.net #2954143) 2010-02-18 18:32:25 +01:00
lua Coulpe minor build fixes. 2010-01-04 18:43:40 -08:00
src Fix LP: #525926; conky sigsegv if config file is deleted 2010-02-22 22:48:59 +01:00
.gitignore Remove automake build system, fix defconfig.h. 2010-01-04 18:07:49 -08:00
AUTHORS Add ARGB visual support. 2010-01-01 15:03:40 -08:00
autogen.sh Remove automake build system, fix defconfig.h. 2010-01-04 18:07:49 -08:00
changelog2html.py Fix charset of changelog. 2009-03-29 23:18:17 -06:00
ChangeLog $memwithbuffers object and bar (sf.net #2954143) 2010-02-18 18:32:25 +01:00
check_docs.py Update the doc date when check_docs.py is ran. 2009-07-20 17:32:56 -06:00
CMakeLists.txt Remove automake build system, fix defconfig.h. 2010-01-04 18:07:49 -08:00
COPYING Update copyright notices. 2010-01-01 15:46:17 -08:00
INSTALL Initial revision 2005-07-20 00:30:40 +00:00
LICENSE.BSD Update copyright notices. 2010-01-01 15:46:17 -08:00
LICENSE.GPL clarifying licensing 2007-08-10 19:53:44 +00:00
NEWS Reformatted all code 2008-02-20 20:30:45 +00:00
README.cmake Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
text2c.sh Remove automake build system, fix defconfig.h. 2010-01-04 18:07:49 -08:00
TODO Removing old svn keywords. 2008-12-09 16:35:49 -07:00

Hello, there.

Using CMake to build Conky is pretty easy, and here is how I do it:

1. From the top level source dir, create a build working dir, and cd into it
  $ mkdir build
  $ cd build
2. Run the cmake configuration process
  $ cmake ../ # pass the path to the sources to cmake
  OR
  $ ccmake ../ # you can also use the fance curses interface, or try cmake-gui
3. Compile as usual, and enjoy the out-of-source goodness
  $ make
  # make install # if you want

There are a number of build options for Conky, and the best way to discover
them is to use the ccmake (or cmake-gui) CMake tool for browsing them.

Certain Conky build time features (such as doc generation) require third-party
applications, which you should be notified of via CMake.  In the case of doc
generation, you'll need the docbook2X package (available on most
distributions).