mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -05:00
Rebuild with updated MinGW32.
This commit is contained in:
parent
4873021e37
commit
df0d663b35
2
Makefile
2
Makefile
@ -117,7 +117,7 @@ depend: ${SRC}
|
|||||||
@sed -n -e '1,/^# DO NOT DELETE THIS LINE/p' Makefile.bak > Makefile
|
@sed -n -e '1,/^# DO NOT DELETE THIS LINE/p' Makefile.bak > Makefile
|
||||||
@echo >> Makefile
|
@echo >> Makefile
|
||||||
@for i in ${SRC}; do\
|
@for i in ${SRC}; do\
|
||||||
cc ${DEFINES} -MM $$i ; done >> Makefile
|
$(CC) ${DEFINES} -MM $$i ; done >> Makefile
|
||||||
@echo '' >>Makefile
|
@echo '' >>Makefile
|
||||||
@echo '# DEPENDENCIES MUST END AT END OF FILE' >>Makefile
|
@echo '# DEPENDENCIES MUST END AT END OF FILE' >>Makefile
|
||||||
@echo '# IF YOU PUT STUFF HERE IT WILL GO AWAY' >>Makefile
|
@echo '# IF YOU PUT STUFF HERE IT WILL GO AWAY' >>Makefile
|
||||||
|
@ -79,7 +79,7 @@ void ttopen( void) {
|
|||||||
void ttclose( void) {
|
void ttclose( void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int ttputc( int c) {
|
int ttputc( unicode_t c) {
|
||||||
char utf8[ 6] ;
|
char utf8[ 6] ;
|
||||||
int bytes ;
|
int bytes ;
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
/* Standard error macro for reporting API errors */
|
/* Standard error macro for reporting API errors */
|
||||||
#define PERR(bSuccess, api){if(!(bSuccess)) printf("%s:Error %d from %s \
|
#define PERR(bSuccess, api){if(!(bSuccess)) printf("%s:Error %ld from %s \
|
||||||
on line %d\n", __FILE__, GetLastError(), api, __LINE__);}
|
on line %d\n", __FILE__, GetLastError(), api, __LINE__);}
|
||||||
|
|
||||||
static void cls( HANDLE hConsole )
|
static void cls( HANDLE hConsole )
|
||||||
|
Loading…
Reference in New Issue
Block a user