mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
TI-91: Timewarrior does not compile on DragonFly
- Thanks to Michael Neumann.
This commit is contained in:
parent
4baf7be64a
commit
09d15c0de3
5 changed files with 10 additions and 3 deletions
1
AUTHORS
1
AUTHORS
|
@ -11,6 +11,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
|||
Ben Boeckel
|
||||
ilove zfs
|
||||
Paul Fenwick
|
||||
Michael Neumann
|
||||
|
||||
Thanks to the following, who submitted detailed bug reports and excellent
|
||||
suggestions:
|
||||
|
|
|
@ -31,11 +31,11 @@ set (PACKAGE_TARNAME "${PACKAGE}")
|
|||
set (PACKAGE_VERSION "${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")
|
||||
else (FREEBSD)
|
||||
else (FREEBSD OR DRAGONFLY)
|
||||
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_RCDIR "${TASKSH_DOCDIR}/rc" CACHE STRING "Installation directory for configuration files")
|
||||
SET (TASKSH_BINDIR bin CACHE STRING "Installation directory for the binary")
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
1.3.0 () -
|
||||
|
||||
- TI-91 Timewarrior does not compile on DragonFly
|
||||
(thanks to Michael Neumann).
|
||||
|
||||
------ current release ---------------------------
|
||||
|
||||
1.2.0 (2017-05-10) 3f4b2284ad19beacd30e202e6c700a36c2b65c60
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#cmakedefine FREEBSD
|
||||
#cmakedefine OPENBSD
|
||||
#cmakedefine NETBSD
|
||||
#cmakedefine DRAGONFLY
|
||||
#cmakedefine HAIKU
|
||||
#cmakedefine SOLARIS
|
||||
#cmakedefine KFREEBSD
|
||||
|
|
|
@ -33,6 +33,8 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
|
|||
set (OPENBSD true)
|
||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
|
||||
set (NETBSD true)
|
||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "DragonFly")
|
||||
set (DRAGONFLY true)
|
||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
|
||||
set (SOLARIS true)
|
||||
elseif (${CMAKE_SYSTEM_NAME} STREQUAL "GNU")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue