]> mj.ucw.cz Git - checkmail.git/blobdiff - Makefile
Use Content-Length to determine mail length if available
[checkmail.git] / Makefile
index 11106e0501eacbfba98ba7372f5232ef3bbc32d1..074cb25e4d8150b675d6c7feb23ea688f91e0bf6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,26 @@
+# Define if you want support for wide characters (needs libncursesw)
+CONFIG_WIDE_CURSES=1
+
+# Define if you want XKB led controls and on-screen display via OSDD
+CONFIG_X11=1
+
 #DEBUG=-ggdb
 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG) -std=gnu99 -DVERSION=$(VERSION) -DYEAR=$(YEAR)
+
+ifeq ($(CONFIG_WIDE_CURSES),1)
+LDFLAGS=-lncursesw
+CFLAGS+=-DCONFIG_WIDE_CURSES=1
+else
 LDFLAGS=-lncurses
+endif
+
+ifeq ($(CONFIG_X11),1)
+LDFLAGS+=-lX11
+CFLAGS+=-DCONFIG_X11=1
+endif
 
-VERSION=1.0
-YEAR=2007
+VERSION=1.7
+YEAR=2014
 
 all: cm