summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Allen <rsaxvc@gmail.com>2013-10-24 00:14:17 -0500
committerRichard Allen <rsaxvc@gmail.com>2013-10-24 00:14:17 -0500
commit0ef5d90cdfa80746cf36e387f16808e15d4e6259 (patch)
tree7f30f13919c4e96f4f5e8bb4c3902d36d1ee1229
parent9e185d45d67caddf7ffaed04b589f3df587c1215 (diff)
downloadpianobar-0ef5d90cdfa80746cf36e387f16808e15d4e6259.tar.gz
pianobar-0ef5d90cdfa80746cf36e387f16808e15d4e6259.tar.bz2
pianobar-0ef5d90cdfa80746cf36e387f16808e15d4e6259.zip
Port to OpenBSD
This really just tells the makefile how to call the compiler on OpenBSD. You'll also want the following packages: json libmad libao faad gnutls
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ebf8ae5..d2f2a8a 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,8 @@ ifeq (${CC},cc)
CC=gcc -std=c99
else ifeq (${OS},FreeBSD)
CC=cc -std=c99
+ else ifeq (${OS},OpenBSD)
+ CC=cc -std=c99
else
CC=c99
endif