Subject:
|
utils/Makefile.common problem - djgpp
|
Newsgroups:
|
lugnet.robotics.rcx.legos
|
Date:
|
Thu, 27 Jul 2000 18:19:19 GMT
|
Viewed:
|
1570 times
|
| |
| |
re: legos.0.2.4
In the file Makefile.common in the utils directory is this:
# DJGPP does not define OSTYPE
#
ifndef OSTYPE
OSTYPE=$(MSDOS)
endif
It should be:
# DJGPP does not define OSTYPE
#
ifndef OSTYPE
OSTYPE=$(shell uname)
endif
With the addition of "MS-DOS" in the later ifneq line for DJGPP:
ifneq (,$(findstring $(OSTYPE),MSDOS msdosdjgpp MS-DOS))
#
# Put here DJPP defines
# --------------------------
EXT=.exe
CC=gccw32
# --------------------------
endif
or, simply change the former to:
OSTYPE=MSDOS
|
|
Message has 1 Reply: | | Re: utils/Makefile.common problem - djgpp
|
| (...) I think that in we intented to write: # DJGPP does not define OSTYPE # ifndef OSTYPE OSTYPE=MSDOS endif Because we know that DJPP does not define OSTYPE. Are we sure that uname.exe is always present in a DJPP installation? (...) No problem. (...) (24 years ago, 27-Jul-00, to lugnet.robotics.rcx.legos)
|
2 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|