mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
16 lines
327 B
Sed
16 lines
327 B
Sed
# sed script for DJGPP specific editing of config.hin
|
|
|
|
$ a\
|
|
\
|
|
\
|
|
/* DJGPP specific defines. */\
|
|
\
|
|
#include <unistd.h>\
|
|
#define TAB_EXT ((pathconf(NULL, _PC_NAME_MAX) > 12) ? ".tab" : "_tab")\
|
|
#define OUTPUT_EXT ((pathconf(NULL, _PC_NAME_MAX) > 12) ? ".output" : ".out")\
|
|
\
|
|
#define DEFAULT_TMPDIR "/dev/env/DJDIR/tmp"
|
|
|
|
|
|
|