diff options
author | bsam <bsam@FreeBSD.org> | 2013-06-14 00:15:14 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-06-14 00:15:14 +0800 |
commit | 56e7d65d25d8732edb426fc5827d97a3f81fd418 (patch) | |
tree | 79d5b0cff2566c3b0004fe69e1be37babb7310b9 | |
parent | 594f7f2b2f5fe165f2a15e732c332ff7e067e983 (diff) | |
download | freebsd-ports-gnome-56e7d65d25d8732edb426fc5827d97a3f81fd418.tar.gz freebsd-ports-gnome-56e7d65d25d8732edb426fc5827d97a3f81fd418.tar.zst freebsd-ports-gnome-56e7d65d25d8732edb426fc5827d97a3f81fd418.zip |
. fix building with clang (CFLAGS+=-Wno-return-type);
. trim Makefile headers.
-rw-r--r-- | audio/drumpiler/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/audio/drumpiler/Makefile b/audio/drumpiler/Makefile index 55234639d23c..ac0fc7f07192 100644 --- a/audio/drumpiler/Makefile +++ b/audio/drumpiler/Makefile @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: drumpiler -# Date created: Jan 15, 2004 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD$ -# PORTNAME= drumpiler PORTVERSION= 0.9.0 @@ -16,7 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Drum machine compiler USE_SDL= sdl -CFLAGS+= `${SDL_CONFIG} --cflags` +CFLAGS+= `${SDL_CONFIG} --cflags` -Wno-return-type LIBS+= `${SDL_CONFIG} --libs` PLIST_FILES= bin/drumpiler |