mirror of
https://codeberg.org/dwl/dwl.git
synced 2025-11-12 13:29:58 -05:00
allow use config.def.h instead of config.h
This commit is contained in:
parent
e5dc5b0ad7
commit
be39a5d7e8
3 changed files with 10 additions and 3 deletions
6
dwl.c
6
dwl.c
|
|
@ -455,7 +455,11 @@ static xcb_atom_t netatom[NetLast];
|
|||
#endif
|
||||
|
||||
/* configuration, allows nested code to access above variables */
|
||||
#include "config.h"
|
||||
#ifdef USE_CONFIG_DEF_H
|
||||
# include "config.def.h"
|
||||
#else
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
/* attempt to encapsulate suck into one file */
|
||||
#include "client.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue