diff options
| author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-30 13:04:19 +0200 |
|---|---|---|
| committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-30 13:04:19 +0200 |
| commit | ae5baac932af877cb18df6853d45f033ed9b270f (patch) | |
| tree | c7323028d822461af56c82442ff894668f8103b1 | |
| parent | bef87acd0d0e22ba4689be6f1c39ce2d90812317 (diff) | |
| download | st-ae5baac932af877cb18df6853d45f033ed9b270f.tar.gz st-ae5baac932af877cb18df6853d45f033ed9b270f.zip | |
use predefined OS macro instead of uname.
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | config.mk | 9 | ||||
| -rw-r--r-- | st.c | 6 |
3 files changed, 4 insertions, 12 deletions
| @@ -10,7 +10,6 @@ all: options st | |||
| 10 | 10 | ||
| 11 | options: | 11 | options: |
| 12 | @echo st build options: | 12 | @echo st build options: |
| 13 | @echo "SYSTEM = ${SYSTEM}" | ||
| 14 | @echo "CFLAGS = ${CFLAGS}" | 13 | @echo "CFLAGS = ${CFLAGS}" |
| 15 | @echo "LDFLAGS = ${LDFLAGS}" | 14 | @echo "LDFLAGS = ${LDFLAGS}" |
| 16 | @echo "CC = ${CC}" | 15 | @echo "CC = ${CC}" |
| @@ -14,15 +14,8 @@ X11LIB = /usr/X11R6/lib | |||
| 14 | INCS = -I. -I/usr/include -I${X11INC} | 14 | INCS = -I. -I/usr/include -I${X11INC} |
| 15 | LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lutil | 15 | LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lutil |
| 16 | 16 | ||
| 17 | # uncomment manualy your system if compilation fail | ||
| 18 | SYSTEM = -D`uname | tr a-z A-Z` | ||
| 19 | #SYSTEM = -DLINUX | ||
| 20 | #SYSTEM = -DOPENBSD | ||
| 21 | #SYSTEM = -DFREEBSD | ||
| 22 | #SYSTEM = -DNETBSD | ||
| 23 | |||
| 24 | # flags | 17 | # flags |
| 25 | CPPFLAGS = -DVERSION=\"${VERSION}\" ${SYSTEM} | 18 | CPPFLAGS = -DVERSION=\"${VERSION}\" |
| 26 | CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} | 19 | CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} |
| 27 | LDFLAGS = -s ${LIBS} | 20 | LDFLAGS = -s ${LIBS} |
| 28 | 21 | ||
| @@ -20,11 +20,11 @@ | |||
| 20 | #include <X11/keysym.h> | 20 | #include <X11/keysym.h> |
| 21 | #include <X11/Xutil.h> | 21 | #include <X11/Xutil.h> |
| 22 | 22 | ||
| 23 | #if defined(LINUX) | 23 | #if defined(__linux) |
| 24 | #include <pty.h> | 24 | #include <pty.h> |
| 25 | #elif defined(OPENBSD) || defined(NETBSD) | 25 | #elif defined(__OpenBSD__) || defined(__NetBSD__) |
| 26 | #include <util.h> | 26 | #include <util.h> |
| 27 | #elif defined(FREEBSD) | 27 | #elif defined(__FreeBSD__) || defined(__DragonFly__) |
| 28 | #include <libutil.h> | 28 | #include <libutil.h> |
| 29 | #endif | 29 | #endif |
| 30 | 30 | ||
