[BACK]Return to system CVS log [TXT][DIR] Up to [Development] / inventor / make

File: [Development] / inventor / make / system (download)

Revision 1.4, Tue Sep 25 00:45:57 2001 UTC (16 years ago) by jlim
Branch: MAIN
CVS Tags: release-2_1_5-9, release-2_1_5-8
Changes since 1.3: +5 -0 lines

Various changes:

  * Fixed Bug 63 and 64.

  * Handled nonstandard sed location.

  * Used for-loop in man page install.

  * Included casts for 64-bit builds.

  * Added placeholder for FreeBSD options.

  * Included unistd.h for getopt() and stdlib.h for malloc().

  * Implemented SoText[23] workaround for glibc-2.2.* iconv().

  * Split long lines in SoHandleBoxDraggerGeom.h and
    SoTransformerDraggerGeom.h in lib/interaction/src/draggers/geom.

  * Added IV_NO_OVERLAYS/OIV_NO_OVERLAYS variables to disable overlay planes.

usingIrix = 0
usingLinux = 0
usingFreeBSD = 0

UNAME = $(shell uname | tr '[:upper:]' '[:lower:]')

ifneq (, $(findstring irix, $(UNAME)))
usingIrix = 1
endif

ifneq (, $(findstring linux, $(UNAME)))
usingLinux = 1
endif

ifneq (, $(findstring freebsd, $(UNAME)))
usingFreeBSD = 1
endif