Sorry for the files here is the errors to be archived :
make error :
----------------------------------------------------
dwm build options:
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/X11R6/include -I/usr/include/freetype2 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION="6.1" -DXINERAMA
LDFLAGS = -L/usr/X11R6/lib -lX11 -lXinerama -lfontconfig -lXft
CC = cc
cc -c -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/X11R6/include -I/usr/include/freetype2 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"6.1\" -DXINERAMA dwm.c
dwm.c: Dans la fonction « cleanup »:
dwm.c:487:25: error: « colors » non déclaré (première utilisation dans cette fonction); vouliez-vous utiliser « XColor » ?
for (i = 0; i < LENGTH(colors); i++)
^~~~~~
dwm.c:53:41: note: dans la définition de la macro « LENGTH »
#define LENGTH(X) (sizeof X / sizeof X[0])
^
dwm.c:487:25: note: chaque identificateur non déclaré est rapporté une seule fois pour chaque fonction dans laquelle il apparaît
for (i = 0; i < LENGTH(colors); i++)
^~~~~~
dwm.c:53:41: note: dans la définition de la macro « LENGTH »
#define LENGTH(X) (sizeof X / sizeof X[0])
^
dwm.c: Dans la fonction « setup »:
dwm.c:1570:26: error: « colors » non déclaré (première utilisation dans cette fonction); vouliez-vous utiliser « XColor » ?
scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
^~~~~~
dwm.c:53:41: note: dans la définition de la macro « LENGTH »
#define LENGTH(X) (sizeof X / sizeof X[0])
^
make: *** [Makefile:18: dwm.o] Error 1
----------------------------------------------------
and my config.h file :
----------------------------------------------------
/* See LICENSE file for copyright and license details. */
/* appearance */
static const char *fonts[] = {
"monospace:size=14"
};
static const char dmenufont[] = "monospace:size=14";
static const char normbordercolor[] = "#444444";
static const char normbgcolor[] = "#222222";
static const char normfgcolor[] = "#bbbbbb";
static const char selbordercolor[] = "#005577";
static const char selbgcolor[] = "#005577";
static const char selfgcolor[] = "#eeeeee";
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static const Rule rules[] = {
/* xprop(1):
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 1 << 4, 0, -1 },
{ "Firefox", NULL, NULL, 0, 0, -1 },
};
/* layout(s) */
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
};
/* key definitions */
#define MODKEY Mod1Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
static const char *termcmd[] = { "st", NULL };
static const char *browse[] = { "defaultbrowser", NULL };
static const char *edit[] = { "defaulttexteditor", NULL };
static const char *files[] = { "defaultfilesbrowser", NULL };
static const char *image[] = { "defaultimageviewer", NULL };
static const char *mutecmd[] = { "amixer", "sset", "Master", "toggle", NULL };
static const char *volupcmd[] = { "amixer", "sset", "Master", "5+", "unmute", NULL };
static const char *voldowncmd[] = { "amixer", "sset", "Master", "5-", "unmute", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY|ShiftMask, XK_b, spawn, {.v = browse } },
{ MODKEY|ShiftMask, XK_e, spawn, {.v = edit } },
{ MODKEY|ShiftMask, XK_f, spawn, {.v = files } },
{ MODKEY|ShiftMask, XK_i, spawn, {.v = image } },
{ MODKEY|ShiftMask, XK_End, spawn, {.v = mutecmd } },
{ MODKEY|ShiftMask, XK_Prior, spawn, {.v = volupcmd } },
{ MODKEY|ShiftMask, XK_Next, spawn, {.v = voldowncmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
TAGKEYS( 0x26, 0)
TAGKEYS( 0xe9, 1)
TAGKEYS( 0x22, 2)
TAGKEYS( 0x27, 3)
TAGKEYS( 0x28, 4)
TAGKEYS( 0x2d, 5)
TAGKEYS( 0xe8, 6)
TAGKEYS( 0x5f, 7)
TAGKEYS( 0xe7, 8)
{ MODKEY|ShiftMask, XK_q, quit, {0} },
};
/* button definitions */
/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
/* click event mask button function argument */
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
{ ClkWinTitle, 0, Button2, zoom, {0} },
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
{ ClkTagBar, 0, Button1, view, {0} },
{ ClkTagBar, 0, Button3, toggleview, {0} },
{ ClkTagBar, MODKEY, Button1, tag, {0} },
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
};
----------------------------------------------------
September 8, 2018 1:32 PM, "Hiltjo Posthuma" <hiltjo_AT_codemadness.org> wrote:
> On Sat, Sep 08, 2018 at 10:59:00AM +0000, mail_AT_socce.xyz wrote:
>
>> Hi all, i'am trying to compile the latest version of dwm via "git clone
>>
https://git.suckless.org/dwm"
>>
>> make return this :
https://framadrop.org/r/Xs6RmII-iJ#fW1DAIFZT1k+6oMHDqZh9fLILK9Q3CAfu23F6RX1xbk=
>>
>> here my config.h :
>>
https://framadrop.org/r/sbMu6Xgi4i#pH08ZY4QgN7oCIuMSpNY+4o1b1P6bli+C4JHpHrxBcU=
>>
>> Thanks for your help.
>>
>> --
>> mail_AT_socce.xyz
>
> Dear sir,
>
> Just paste the output in the e-mail so it's archived also. Furthermore paste
> services that require javascript code are unneccesary and evil.
>
> Thanks for your understanding,
>
> --
> Kind regards,
> Hiltjo
Received on Sat Sep 08 2018 - 16:03:27 CEST