Makefile checks for uname -s of "NetBSD"
h/t Thomas
This commit is contained in:
parent
68df71b325
commit
1b293283a5
2 changed files with 11 additions and 6 deletions
13
Makefile
13
Makefile
|
|
@ -1,10 +1,10 @@
|
|||
# Tux Paint - A simple drawing program for children.
|
||||
|
||||
# Copyright (c) 2002-2024
|
||||
# Copyright (c) 2002-2025
|
||||
# Various contributors (see AUTHORS.txt)
|
||||
# https://tuxpaint.org/
|
||||
|
||||
# June 14, 2002 - December 29, 2024
|
||||
# June 14, 2002 - January 3, 2025
|
||||
|
||||
|
||||
# The version number, for release:
|
||||
|
|
@ -66,8 +66,13 @@ else
|
|||
OS:=os2
|
||||
GPERF:=/@unixroot/usr/bin/gperf.exe
|
||||
else
|
||||
OS:=linux
|
||||
GPERF:=/usr/bin/gperf
|
||||
ifeq ($(SYSNAME),NetBSD)
|
||||
OS:=netbsd
|
||||
GPERF:=/usr/bin/gperf
|
||||
else
|
||||
OS:=linux
|
||||
GPERF:=/usr/bin/gperf
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2025
|
|||
Various contributors (see below, and AUTHORS.txt)
|
||||
https://tuxpaint.org/
|
||||
|
||||
2025.January.2 (0.9.35)
|
||||
2025.January.3 (0.9.35)
|
||||
* New Magic Tools:
|
||||
----------------
|
||||
+ Heart, Sparkle, and Star emitters
|
||||
|
|
@ -67,7 +67,7 @@ https://tuxpaint.org/
|
|||
+ Don't use Linux-specific invocation of "install"; use "mkdir" & "cp"
|
||||
Thomas Klausner <wiz@netbsd.org>
|
||||
|
||||
+ WIP Specific build settings for NetBSD
|
||||
+ Specific build settings for NetBSD
|
||||
Bill Kendrick <bill@newbreedsoftware.com>
|
||||
& Thomas Klausner <wiz@netbsd.org>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue