TI-91: Timewarrior does not compile on DragonFly

- Thanks to Michael Neumann.
This commit is contained in:
Paul Beckingham 2017-12-10 00:23:08 -05:00
parent 4baf7be64a
commit 09d15c0de3
5 changed files with 10 additions and 3 deletions

View file

@ -11,6 +11,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
Ben Boeckel Ben Boeckel
ilove zfs ilove zfs
Paul Fenwick Paul Fenwick
Michael Neumann
Thanks to the following, who submitted detailed bug reports and excellent Thanks to the following, who submitted detailed bug reports and excellent
suggestions: suggestions:

View file

@ -31,11 +31,11 @@ set (PACKAGE_TARNAME "${PACKAGE}")
set (PACKAGE_VERSION "${VERSION}") set (PACKAGE_VERSION "${VERSION}")
set (PACKAGE_STRING "${PACKAGE} ${VERSION}") set (PACKAGE_STRING "${PACKAGE} ${VERSION}")
if (FREEBSD) if (FREEBSD OR DRAGONFLY)
SET (TASKSH_MAN1DIR man/man1 CACHE STRING "Installation directory for man pages, section 1") SET (TASKSH_MAN1DIR man/man1 CACHE STRING "Installation directory for man pages, section 1")
else (FREEBSD) else (FREEBSD OR DRAGONFLY)
SET (TASKSH_MAN1DIR share/man/man1 CACHE STRING "Installation directory for man pages, section 1") SET (TASKSH_MAN1DIR share/man/man1 CACHE STRING "Installation directory for man pages, section 1")
endif (FREEBSD) endif (FREEBSD OR DRAGONFLY)
SET (TASKSH_DOCDIR share/doc/tasksh CACHE STRING "Installation directory for doc files") SET (TASKSH_DOCDIR share/doc/tasksh CACHE STRING "Installation directory for doc files")
SET (TASKSH_RCDIR "${TASKSH_DOCDIR}/rc" CACHE STRING "Installation directory for configuration files") SET (TASKSH_RCDIR "${TASKSH_DOCDIR}/rc" CACHE STRING "Installation directory for configuration files")
SET (TASKSH_BINDIR bin CACHE STRING "Installation directory for the binary") SET (TASKSH_BINDIR bin CACHE STRING "Installation directory for the binary")

View file

@ -1,5 +1,8 @@
1.3.0 () - 1.3.0 () -
- TI-91 Timewarrior does not compile on DragonFly
(thanks to Michael Neumann).
------ current release --------------------------- ------ current release ---------------------------
1.2.0 (2017-05-10) 3f4b2284ad19beacd30e202e6c700a36c2b65c60 1.2.0 (2017-05-10) 3f4b2284ad19beacd30e202e6c700a36c2b65c60

View file

@ -32,6 +32,7 @@
#cmakedefine FREEBSD #cmakedefine FREEBSD
#cmakedefine OPENBSD #cmakedefine OPENBSD
#cmakedefine NETBSD #cmakedefine NETBSD
#cmakedefine DRAGONFLY
#cmakedefine HAIKU #cmakedefine HAIKU
#cmakedefine SOLARIS #cmakedefine SOLARIS
#cmakedefine KFREEBSD #cmakedefine KFREEBSD

View file

@ -33,6 +33,8 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
set (OPENBSD true) set (OPENBSD true)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD") elseif (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
set (NETBSD true) set (NETBSD true)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "DragonFly")
set (DRAGONFLY true)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "SunOS") elseif (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
set (SOLARIS true) set (SOLARIS true)
elseif (${CMAKE_SYSTEM_NAME} STREQUAL "GNU") elseif (${CMAKE_SYSTEM_NAME} STREQUAL "GNU")