Updated default config.mk. - sam - An updated version of the sam text editor. | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 66a80490495130fc4ff87bf4cea0de21a169feed | |
parent f66024a8086c38b45cee40f1a5a8ee429b8f5a7b | |
Author: Rob King <[email protected]> | |
Date: Fri, 9 Sep 2016 17:51:27 -0500 | |
Updated default config.mk. | |
Diffstat: | |
config.mk.def | 11 +++++++++++ | |
1 file changed, 11 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/config.mk.def b/config.mk.def | |
@@ -4,11 +4,19 @@ | |
# CC is the C compiler to use | |
CC=gcc -std=c99 | |
+# Set USE64BITS to the appropriate value for your platform: | |
+# 0 - a 32-bit platform | |
+# 1 - a little-endian 64-bit platform (e.g. x86_64) | |
+# 2 - a big-endian 64-bit platform (e.g. DEC Alpha) | |
+USE64BITS=1 | |
+ | |
# STANDARDS names the C preprocessor defines that need to | |
# be present to get a more-or-less standard compilation | |
# environment. | |
# | |
# Mac OS X users need to add -D_DARWIN_C_SOURCE here. | |
+# If you require protocol compatibility with classic sam, | |
+# add -DCLASSIC_SAM_COMPATIBILITY here. | |
STANDARDS=-D_POSIX_C_SOURCE=200809L | |
# DESTDIR is the root of the installation tree | |
@@ -26,3 +34,6 @@ MANDIR?=$(DESTDIR)/share/man/ | |
# LDFLAGS=-L/usr/X11R6/lib | |
INCLUDES=-I/usr/include/freetype2 | |
LDFLAGS= | |
+ | |
+# Set this to your default remote shell. | |
+RXPATH=/usr/bin/ssh |