I didn't see any other threads dedicated to this so thought I'd post, plus scottro offered so here we go! I went through several web pages on the subject but the (custom) build is not working. here's what I did:
Thanks in advance!
- Pulled the dwm source to my build directory using git.
- Copied config.def.h to config.h
- Edited config.h to reflect my terminal (xterm) since the standard ports install does not recognize the command
xterm
- Read /usr/ports/x11-wm/dwm/Makefile
- Ran
make DWM_CONF=/usr/home/paul/Projects/builds/dwm/config.h install clean
Code:
CC dwm.c
dwm.c:1583:50: error: use of undeclared identifier 'normbordercolor'
scheme[SchemeNorm].border = drw_clr_create(drw, normbordercolor);
^
dwm.c:1584:46: error: use of undeclared identifier 'normbgcolor'
scheme[SchemeNorm].bg = drw_clr_create(drw, normbgcolor);
^
dwm.c:1585:46: error: use of undeclared identifier 'normfgcolor'
scheme[SchemeNorm].fg = drw_clr_create(drw, normfgcolor);
^
dwm.c:1586:49: error: use of undeclared identifier 'selbordercolor'
scheme[SchemeSel].border = drw_clr_create(drw, selbordercolor);
^
dwm.c:1587:45: error: use of undeclared identifier 'selbgcolor'
scheme[SchemeSel].bg = drw_clr_create(drw, selbgcolor);
^
dwm.c:1588:45: error: use of undeclared identifier 'selfgcolor'
scheme[SchemeSel].fg = drw_clr_create(drw, selfgcolor);
^
6 errors generated.
*** [dwm.o] Error code 1
make[2]: stopped in /usr/ports/x11-wm/dwm/work/dwm-6.1
1 error
make[2]: stopped in /usr/ports/x11-wm/dwm/work/dwm-6.1
===> Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to
the maintainer.
*** Error code 1
Stop.
make[1]: stopped in /usr/ports/x11-wm/dwm
*** Error code 1
Thanks in advance!