Hi, Here is small patch for 'make clean', to remove generated config.h.
I had generated config.h long time ago and pulling the latest code + compiling it will generate funky compilation errors. Best, Sanel
diff --git a/Makefile b/Makefile index 0b3cecd..c7c1005 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ $(OBJ): config.h config.mk st: $(OBJ) $(CC) -o $@ $(OBJ) $(STLDFLAGS) + $(RM) config.h clean: rm -f st $(OBJ) st-$(VERSION).tar.gz
Hiltjo Posthuma <[email protected]> writes: > Hi, > > There is now a new release of st 0.8. > > There are many features and code that has been rewritten. Particulary > noteworthy is now a more clear separation of the X11/Xft code and the terminal > emulator logic. > > Some peole have shown interest in writing a Wayland port, writing specific > (fuzz) tests for the terminal emulator or reusing the terminal emulator code. > > There are too many features and fixes to list, for an overview type: > git log 0.7..0.8 > > Thanks goes out to all the contributors. > > -- > Kind regards, > Hiltjo
