More DJGPP cleanup

This commit is contained in:
Landon Curt Noll
2021-12-08 12:33:46 -08:00
parent 8db8f93ae0
commit 44f3778af1
2 changed files with 5 additions and 3 deletions

View File

@@ -128,7 +128,9 @@ recommends the following settings:
CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR} CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR}
CALCRC= ./.calcinit;~/.calcrc;${CALC_SHAREDIR}/startup CALCRC= ./.calcinit;~/.calcrc;${CALC_SHAREDIR}/startup
CALCPAGER= less.exe -ci CALCPAGER= less.exe -ci
DEBUG= -O2 -gstabs+ -DWINDOZ DEBUG= -O2 -gstabs+ -D_WIN32
HAVE_ENVIRON=-DHAVE_NO_ENVIRON
HAVE_ARC4RANDOM=-DHAVE_NO_ARC4RANDOM
The 'Linux set' or 'gcc set' (see the Select your compiler type section) The 'Linux set' or 'gcc set' (see the Select your compiler type section)
should work for DJGPP systems if you set the above Makefile variables. should work for DJGPP systems if you set the above Makefile variables.

View File

@@ -179,7 +179,7 @@ CONFIG oldstd = { /* backward compatible standard configuration */
#if defined(_WIN32) || defined(_WIN64) #if defined(_WIN32) || defined(_WIN64)
TRUE, /* running under windows */ TRUE, /* running under windows */
#else #else
FALSE, /* congrats, you are not using windows */ FALSE, /* not using windows */
#endif #endif
#if defined(__CYGWIN__) #if defined(__CYGWIN__)
TRUE, /* compiled under cygwin */ TRUE, /* compiled under cygwin */
@@ -239,7 +239,7 @@ CONFIG newstd = { /* new non-backward compatible configuration */
#if defined(_WIN32) || defined(_WIN64) #if defined(_WIN32) || defined(_WIN64)
TRUE, /* running under windows */ TRUE, /* running under windows */
#else #else
FALSE, /* congrats, you are not using windows */ FALSE, /* not using windows */
#endif #endif
#if defined(__CYGWIN__) #if defined(__CYGWIN__)
TRUE, /* compiled under cygwin */ TRUE, /* compiled under cygwin */