1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 17:47:09 +00:00
Go to file
Ben Kibbey 6e6a1f59e8 Fix hddtemp with disabled drives.
Some drives are unable to return their temperature when in standby mode.
If there is more than one drive installed then other drives may not be
able to get parsed. This patch will skip over the unparsable output for
the current drive and let others get parsed.

Signed-off-by: Brenden Matthews <brenden@diddyinc.com>
2010-01-01 14:50:42 -08:00
cmake tolua++ has different naming convention on FreeBSD 2010-01-01 14:33:42 -08:00
data Fix default config when built without x11 2009-11-16 21:42:55 +01:00
doc Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
extras fix doc typo and add highlighting for times_in_seconds 2009-12-13 00:28:01 +01:00
lua Add CMake build support for Lua bindings. 2009-12-17 19:46:26 -08:00
m4 Added some completely pointless OpenMP optimizations(?) 2009-05-05 17:36:12 -06:00
src Fix hddtemp with disabled drives. 2010-01-01 14:50:42 -08:00
.gitignore Handle build.h, too. 2009-12-07 11:51:00 -08:00
AUTHORS Switching email addrs. 2009-09-26 20:40:42 -07:00
autogen.sh Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
changelog2html.py Fix charset of changelog. 2009-03-29 23:18:17 -06:00
ChangeLog Replace GHashTable with tr1::unordered_map in tcp_portmon 2009-12-09 23:59:07 +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 Add CMake build support for Lua bindings. 2009-12-17 19:46:26 -08:00
config.rpath add config.rpath to satisfy AM_ICONV 2007-01-08 01:10:12 +00:00
configure.ac.in Pattern substitution is a bash-ism; use sed instead. 2010-01-01 14:43:05 -08:00
COPYING Update copyright stuff, fix conky.conf weirdness. 2009-03-29 22:55:51 -06:00
INSTALL Initial revision 2005-07-20 00:30:40 +00:00
LICENSE.BSD Update copyright stuff, fix conky.conf weirdness. 2009-03-29 22:55:51 -06:00
LICENSE.GPL clarifying licensing 2007-08-10 19:53:44 +00:00
Makefile.am add emacs indentation variables to source files in line with current vim settings 2009-07-28 23:44:22 +02: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 use the builtin config also as a default one 2008-12-14 15:45:30 +01: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).