mirror of
https://github.com/rfivet/uemacs.git
synced 2025-02-20 23:17:13 -05:00
Compile under Cygwin64.
This commit is contained in:
parent
03bd7dd902
commit
15012326db
9
Makefile
9
Makefile
@ -1,4 +1,4 @@
|
|||||||
# makefile for emacs, updated Fri, Jun 14, 2013 5:12:57 PM
|
# makefile for emacs, updated Sat, Sep 14, 2013 12:02:10 PM
|
||||||
|
|
||||||
SRC=ansi.c basic.c bind.c bindable.c buffer.c crypt.c display.c ebind.c eval.c exec.c execute.c file.c fileio.c flook.c globals.c ibmpc.c input.c isearch.c line.c lock.c log.c main.c names.c pklock.c posix.c random.c region.c search.c spawn.c tcap.c termio.c utf8.c vmsvt.c vt52.c window.c word.c wrapper.c
|
SRC=ansi.c basic.c bind.c bindable.c buffer.c crypt.c display.c ebind.c eval.c exec.c execute.c file.c fileio.c flook.c globals.c ibmpc.c input.c isearch.c line.c lock.c log.c main.c names.c pklock.c posix.c random.c region.c search.c spawn.c tcap.c termio.c utf8.c vmsvt.c vt52.c window.c word.c wrapper.c
|
||||||
OBJ=ansi.o basic.o bind.o bindable.o buffer.o crypt.o display.o ebind.o eval.o exec.o execute.o file.o fileio.o flook.o globals.o ibmpc.o input.o isearch.o line.o lock.o log.o main.o names.o pklock.o posix.o random.o region.o search.o spawn.o tcap.o termio.o utf8.o vmsvt.o vt52.o window.o word.o wrapper.o
|
OBJ=ansi.o basic.o bind.o bindable.o buffer.o crypt.o display.o ebind.o eval.o exec.o execute.o file.o fileio.o flook.o globals.o ibmpc.o input.o isearch.o line.o lock.o log.o main.o names.o pklock.o posix.o random.o region.o search.o spawn.o tcap.o termio.o utf8.o vmsvt.o vt52.o window.o word.o wrapper.o
|
||||||
@ -41,6 +41,9 @@ endif
|
|||||||
ifeq ($(uname_S),CYGWIN_NT-6.1-WOW64)
|
ifeq ($(uname_S),CYGWIN_NT-6.1-WOW64)
|
||||||
DEFINES=-DAUTOCONF -DCYGWIN -DPROGRAM=$(PROGRAM)
|
DEFINES=-DAUTOCONF -DCYGWIN -DPROGRAM=$(PROGRAM)
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(uname_S),CYGWIN_NT-6.1)
|
||||||
|
DEFINES=-DAUTOCONF -DCYGWIN -DPROGRAM=$(PROGRAM)
|
||||||
|
endif
|
||||||
#DEFINES=-DAUTOCONF
|
#DEFINES=-DAUTOCONF
|
||||||
#LIBS=-ltermcap # BSD
|
#LIBS=-ltermcap # BSD
|
||||||
LIBS=-lcurses # SYSV
|
LIBS=-lcurses # SYSV
|
||||||
@ -159,8 +162,8 @@ line.o: line.c line.h utf8.h display.h estruct.h edef.h log.h
|
|||||||
lock.o: lock.c lock.h estruct.h line.h utf8.h display.h edef.h input.h
|
lock.o: lock.c lock.h estruct.h line.h utf8.h display.h edef.h input.h
|
||||||
log.o: log.c log.h
|
log.o: log.c log.h
|
||||||
main.o: main.c basic.h bind.h edef.h estruct.h line.h utf8.h bindable.h \
|
main.o: main.c basic.h bind.h edef.h estruct.h line.h utf8.h bindable.h \
|
||||||
buffer.h display.h eval.h execute.h file.h input.h lock.h log.h \
|
buffer.h display.h eval.h execute.h file.h input.h lock.h log.h random.h \
|
||||||
random.h search.h termio.h version.h
|
search.h termio.h version.h
|
||||||
names.o: names.c names.h basic.h bind.h edef.h estruct.h line.h utf8.h \
|
names.o: names.c names.h basic.h bind.h edef.h estruct.h line.h utf8.h \
|
||||||
bindable.h buffer.h display.h eval.h exec.h file.h isearch.h region.h \
|
bindable.h buffer.h display.h eval.h exec.h file.h isearch.h region.h \
|
||||||
random.h search.h spawn.h window.h word.h
|
random.h search.h spawn.h window.h word.h
|
||||||
|
@ -56,6 +56,8 @@ static int displaying = TRUE;
|
|||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
/* for window size changes */
|
/* for window size changes */
|
||||||
int chg_width, chg_height;
|
int chg_width, chg_height;
|
||||||
|
|
||||||
|
static int newscreensize(int h, int w);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int reframe(struct window *wp);
|
static int reframe(struct window *wp);
|
||||||
@ -71,7 +73,6 @@ static void modeline(struct window *wp);
|
|||||||
static void mlputi(int i, int r);
|
static void mlputi(int i, int r);
|
||||||
static void mlputli(long l, int r);
|
static void mlputli(long l, int r);
|
||||||
static void mlputf(int s);
|
static void mlputf(int s);
|
||||||
static int newscreensize(int h, int w);
|
|
||||||
|
|
||||||
#if RAINBOW
|
#if RAINBOW
|
||||||
static void putline(int row, int col, char *buf);
|
static void putline(int row, int col, char *buf);
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
#undef BSD
|
#undef BSD
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(SYSV) || defined(u3b2) || defined(_AIX) || (defined(i386) && defined(unix)) || defined(__hpux)
|
#if defined(SYSV) || defined(u3b2) || defined(_AIX) || (defined(i386) && defined(unix)) || defined(__hpux) || defined( CYGWIN)
|
||||||
#define USG 1 /* System V UNIX */
|
#define USG 1 /* System V UNIX */
|
||||||
#else
|
#else
|
||||||
#define USG 0
|
#define USG 0
|
||||||
|
7
flook.c
7
flook.c
@ -75,15 +75,15 @@ boolean fexist( const char *fname)
|
|||||||
*/
|
*/
|
||||||
char *flook( const char *fname, int hflag)
|
char *flook( const char *fname, int hflag)
|
||||||
{
|
{
|
||||||
char *home; /* path to home directory */
|
|
||||||
char *path; /* environmental PATH variable */
|
|
||||||
char *sp; /* pointer into path spec */
|
|
||||||
int i; /* index */
|
int i; /* index */
|
||||||
static char fspec[NSTRING]; /* full path spec to search */
|
static char fspec[NSTRING]; /* full path spec to search */
|
||||||
|
|
||||||
#if ENVFUNC
|
#if ENVFUNC
|
||||||
|
char *path; /* environmental PATH variable */
|
||||||
|
|
||||||
if (hflag) {
|
if (hflag) {
|
||||||
|
char *home; /* path to home directory */
|
||||||
|
|
||||||
home = getenv("HOME");
|
home = getenv("HOME");
|
||||||
if (home != NULL) {
|
if (home != NULL) {
|
||||||
/* build home dir file spec */
|
/* build home dir file spec */
|
||||||
@ -108,6 +108,7 @@ char *flook( const char *fname, int hflag)
|
|||||||
path = getenv("PATH");
|
path = getenv("PATH");
|
||||||
if (path != NULL)
|
if (path != NULL)
|
||||||
while (*path) {
|
while (*path) {
|
||||||
|
char *sp; /* pointer into path spec */
|
||||||
|
|
||||||
/* build next possible file spec */
|
/* build next possible file spec */
|
||||||
sp = fspec;
|
sp = fspec;
|
||||||
|
2
input.c
2
input.c
@ -345,9 +345,9 @@ int getcmd(void)
|
|||||||
|
|
||||||
#if VT220
|
#if VT220
|
||||||
proc_metac:
|
proc_metac:
|
||||||
#endif
|
|
||||||
if (c == 128+27) /* CSI */
|
if (c == 128+27) /* CSI */
|
||||||
goto handle_CSI;
|
goto handle_CSI;
|
||||||
|
#endif
|
||||||
/* process META prefix */
|
/* process META prefix */
|
||||||
if (c == (CONTROL | '[')) {
|
if (c == (CONTROL | '[')) {
|
||||||
c = get1key();
|
c = get1key();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user