Rename config.h to config.h.def. - sam - An updated version of the sam text editor.
 (HTM) git clone git://vernunftzentrum.de/sam.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit fae7a1407b0bb5b9104a5541307df3210c4c7fef
 (DIR) parent d16e3252dccaf9fe42dcaccdb0f41ca955689acc
 (HTM) Author: Rob King <jking@deadpixi.com>
       Date:   Thu, 11 Aug 2016 21:02:39 -0500
       
       Rename config.h to config.h.def.
       
       Diffstat:
         config.h.def                        |      29 +++++++++++++++++++++++++++++
       
       1 file changed, 29 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/config.h.def b/config.h.def
       @@ -0,0 +1,29 @@
       +#ifndef _SAM_CONFIG_H
       +#define _SAM_CONFIG_H
       +
       +/* Where to put temporary files. */
       +#define TMPDIR "/tmp"
       +
       +/* Is the target 64-bits?
       + * 0 - build for 32-bit systems
       + * 1 - build for 64-bit little-endian systems
       + * 2 - build for 64-bit big-endian systems
       + */
       +#define USE64BITS 1
       +
       +/* Command key definitions. These should generally be ASCII control codes.
       + * Define them to 0 to disable a key.
       + */
       +#define LINEUP      0x05 /* Ctrl-E */
       +#define LINEDOWN    0x18 /* Ctrl-X */
       +#define CHARLEFT    0x13 /* Ctrl-S */
       +#define CHARRIGHT   0x04 /* Ctrl-D */
       +#define COMMANDKEY  0x0B /* Ctrl-K */
       +
       +/* The remote shell to use for remote connections. */
       +#define RXPATH "/usr/bin/ssh"
       +
       +/* The system shell to use. Must be Bourne-compatible. */
       +#define SHPATH "/bin/sh"
       +
       +#endif