move comments

This commit is contained in:
speedie 2023-03-02 18:19:24 +01:00
parent 1bdac1fadc
commit d5ae45424d

View file

@ -23,16 +23,20 @@
#define USEIMAGE 1 #define USEIMAGE 1
#endif #endif
/* check if we should enable multimonitor support using xinerama */
#ifdef XINERAMA #ifdef XINERAMA
#define USEXINERAMA 1 #define USEXINERAMA 1
#else #else
#define USEXINERAMA 0 #define USEXINERAMA 0
#endif #endif
/* include right to left language library */
#if USERTL #if USERTL
#include <fribidi.h> #include <fribidi.h>
#endif #endif
/* include libraries used for image support */
#if USEIMAGE #if USEIMAGE
#include <errno.h> #include <errno.h>
#include <pwd.h> #include <pwd.h>
@ -40,6 +44,7 @@
#include <openssl/md5.h> #include <openssl/md5.h>
#endif #endif
/* include xinerama */
#if USEXINERAMA #if USEXINERAMA
#include <X11/extensions/Xinerama.h> #include <X11/extensions/Xinerama.h>
#endif #endif