Browse Source

fix build

use config.def.h mechanism
add SHELL in config.h
master
pancake 14 years ago
parent
commit
596bb133a5
3 changed files with 13 additions and 9 deletions
  1. +4
    -1
      Makefile
  2. +6
    -5
      config.def.h
  3. +3
    -3
      st.c

+ 4
- 1
Makefile View File

@ -8,12 +8,15 @@ OBJ = ${SRC:.c=.o}
all: options st
options:
options: options
@echo st build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
config.h:
cp config.def.h config.h
.c.o:
@echo CC $<
@${CC} -c ${CFLAGS} $<


config.h → config.def.h View File


+ 3
- 3
st.c View File

@ -213,10 +213,10 @@ static inline int selected(int x, int y) {
if ((seley==y && selby==y)) {
int bx = MIN(selbx, selex);
int ex = MAX(selbx, selex);
return if(x>=bx && x<=ex)
return (x>=bx && x<=ex);
}
return (((y>sb[1] && y<se[1]) || (y==se[1] && x<=se[0])) || \
(y==sb[1] && x>=sb[0] && (x<=se[0] || sb[1]!=se[1])))
(y==sb[1] && x>=sb[0] && (x<=se[0] || sb[1]!=se[1])));
}
static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) {
@ -331,7 +331,7 @@ die(const char *errstr, ...) {
void
execsh(void) {
char *args[3] = {getenv("SHELL"), "-i", NULL};
DEFAULT(args[0], "/bin/sh"); /* if getenv() failed */
DEFAULT(args[0], SHELL); /* if getenv() failed */
putenv("TERM=" TNAME);
execvp(args[0], args);
}


Loading…
Cancel
Save