1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

print_version to cpp

This commit is contained in:
Nikolas Garofil 2010-02-26 01:17:27 +01:00
parent 54630eb39e
commit fb00ff8fa9

View File

@ -33,6 +33,7 @@
#include "conky.h" #include "conky.h"
#include "common.h" #include "common.h"
#include "timed-thread.h" #include "timed-thread.h"
#include <iostream>
#include <algorithm> #include <algorithm>
#include <string> #include <string>
#include <stdarg.h> #include <stdarg.h>
@ -176,108 +177,107 @@ static void reload_config(void);
static void print_version(void) static void print_version(void)
{ {
printf(PACKAGE_NAME" "VERSION" compiled "BUILD_DATE" for "BUILD_ARCH"\n"); std::cout << PACKAGE_NAME" "VERSION" compiled "BUILD_DATE" for "BUILD_ARCH"\n"
"\nCompiled in features:\n\n"
printf("\nCompiled in features:\n\n" "System config file: "SYSTEM_CONFIG_FILE"\n"
"System config file: "SYSTEM_CONFIG_FILE"\n" "Package library path: "PACKAGE_LIBDIR"\n\n"
"Package library path: "PACKAGE_LIBDIR"\n\n"
#ifdef BUILD_X11 #ifdef BUILD_X11
" X11:\n" " X11:\n"
# ifdef BUILD_XDAMAGE # ifdef BUILD_XDAMAGE
" * Xdamage extension\n" " * Xdamage extension\n"
# endif /* BUILD_XDAMAGE */ # endif /* BUILD_XDAMAGE */
# ifdef BUILD_XDBE # ifdef BUILD_XDBE
" * XDBE (double buffer extension)\n" " * XDBE (double buffer extension)\n"
# endif /* BUILD_XDBE */ # endif /* BUILD_XDBE */
# ifdef BUILD_XFT # ifdef BUILD_XFT
" * Xft\n" " * Xft\n"
# endif /* BUILD_XFT */ # endif /* BUILD_XFT */
# ifdef BUILD_ARGB # ifdef BUILD_ARGB
" * ARGB visual\n" " * ARGB visual\n"
# endif /* BUILD_ARGB */ # endif /* BUILD_ARGB */
#endif /* BUILD_X11 */ #endif /* BUILD_X11 */
"\n Music detection:\n" "\n Music detection:\n"
#ifdef BUILD_AUDACIOUS #ifdef BUILD_AUDACIOUS
" * Audacious\n" " * Audacious\n"
#endif /* BUILD_AUDACIOUS */ #endif /* BUILD_AUDACIOUS */
#ifdef BUILD_BMPX #ifdef BUILD_BMPX
" * BMPx\n" " * BMPx\n"
#endif /* BUILD_BMPX */ #endif /* BUILD_BMPX */
#ifdef BUILD_MPD #ifdef BUILD_MPD
" * MPD\n" " * MPD\n"
#endif /* BUILD_MPD */ #endif /* BUILD_MPD */
#ifdef BUILD_MOC #ifdef BUILD_MOC
" * MOC\n" " * MOC\n"
#endif /* BUILD_MOC */ #endif /* BUILD_MOC */
#ifdef BUILD_XMMS2 #ifdef BUILD_XMMS2
" * XMMS2\n" " * XMMS2\n"
#endif /* BUILD_XMMS2 */ #endif /* BUILD_XMMS2 */
"\n General:\n" "\n General:\n"
#ifdef HAVE_OPENMP #ifdef HAVE_OPENMP
" * OpenMP\n" " * OpenMP\n"
#endif /* HAVE_OPENMP */ #endif /* HAVE_OPENMP */
#ifdef BUILD_MATH #ifdef BUILD_MATH
" * math\n" " * math\n"
#endif /* BUILD_MATH */ #endif /* BUILD_MATH */
#ifdef BUILD_HDDTEMP #ifdef BUILD_HDDTEMP
" * hddtemp\n" " * hddtemp\n"
#endif /* BUILD_HDDTEMP */ #endif /* BUILD_HDDTEMP */
#ifdef BUILD_PORT_MONITORS #ifdef BUILD_PORT_MONITORS
" * portmon\n" " * portmon\n"
#endif /* BUILD_PORT_MONITORS */ #endif /* BUILD_PORT_MONITORS */
#ifdef BUILD_CURL #ifdef BUILD_CURL
" * Curl\n" " * Curl\n"
#endif /* BUILD_CURL */ #endif /* BUILD_CURL */
#ifdef BUILD_RSS #ifdef BUILD_RSS
" * RSS\n" " * RSS\n"
#endif /* BUILD_RSS */ #endif /* BUILD_RSS */
#ifdef BUILD_WEATHER_METAR #ifdef BUILD_WEATHER_METAR
" * Weather (METAR)\n" " * Weather (METAR)\n"
#ifdef BUILD_WEATHER_XOAP #ifdef BUILD_WEATHER_XOAP
" * Weather (XOAP)\n" " * Weather (XOAP)\n"
#endif /* BUILD_WEATHER_XOAP */ #endif /* BUILD_WEATHER_XOAP */
#endif /* BUILD_WEATHER_METAR */ #endif /* BUILD_WEATHER_METAR */
#ifdef BUILD_WLAN #ifdef BUILD_WLAN
" * wireless\n" " * wireless\n"
#endif /* BUILD_WLAN */ #endif /* BUILD_WLAN */
#ifdef BUILD_IBM #ifdef BUILD_IBM
" * support for IBM/Lenovo notebooks\n" " * support for IBM/Lenovo notebooks\n"
#endif /* BUILD_IBM */ #endif /* BUILD_IBM */
#ifdef BUILD_NVIDIA #ifdef BUILD_NVIDIA
" * nvidia\n" " * nvidia\n"
#endif /* BUILD_NVIDIA */ #endif /* BUILD_NVIDIA */
#ifdef BUILD_EVE #ifdef BUILD_EVE
" * eve-online\n" " * eve-online\n"
#endif /* BUILD_EVE */ #endif /* BUILD_EVE */
#ifdef BUILD_BUILTIN_CONFIG #ifdef BUILD_BUILTIN_CONFIG
" * builtin default configuration\n" " * builtin default configuration\n"
#endif /* BUILD_BUILTIN_CONFIG */ #endif /* BUILD_BUILTIN_CONFIG */
#ifdef BUILD_IMLIB2 #ifdef BUILD_IMLIB2
" * Imlib2\n" " * Imlib2\n"
#endif /* BUILD_IMLIB2 */ #endif /* BUILD_IMLIB2 */
#ifdef BUILD_MIXER_ALSA #ifdef BUILD_MIXER_ALSA
" * ALSA mixer support\n" " * ALSA mixer support\n"
#endif /* BUILD_MIXER_ALSA */ #endif /* BUILD_MIXER_ALSA */
#ifdef BUILD_APCUPSD #ifdef BUILD_APCUPSD
" * apcupsd\n" " * apcupsd\n"
#endif /* BUILD_APCUPSD */ #endif /* BUILD_APCUPSD */
#ifdef BUILD_IOSTATS #ifdef BUILD_IOSTATS
" * iostats\n" " * iostats\n"
#endif /* BUILD_IOSTATS */ #endif /* BUILD_IOSTATS */
#ifdef BUILD_NCURSES #ifdef BUILD_NCURSES
" * ncurses\n" " * ncurses\n"
#endif /* BUILD_NCURSES */ #endif /* BUILD_NCURSES */
#ifdef BUILD_LUA #ifdef BUILD_LUA
" * Lua\n" " * Lua\n"
"\n Lua bindings:\n" "\n Lua bindings:\n"
#ifdef BUILD_LUA_CAIRO #ifdef BUILD_LUA_CAIRO
" * Cairo\n" " * Cairo\n"
#endif /* BUILD_LUA_CAIRO */ #endif /* BUILD_LUA_CAIRO */
#ifdef BUILD_LUA_IMLIB2 #ifdef BUILD_LUA_IMLIB2
" * Imlib2\n" " * Imlib2\n"
#endif /* BUILD_LUA_IMLIB2 */ #endif /* BUILD_LUA_IMLIB2 */
#endif /* BUILD_LUA */ #endif /* BUILD_LUA */
); ;
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
} }