From d1a780bd409f108914a1c129e2858cbcf3b26412 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Sun, 4 Mar 2012 09:32:57 +0000 Subject: [PATCH] Under Mac OS X, look for libvpx in /usr/local to add support for Homebrew in addition to MacPorts. git-svn-id: https://svn.eduke32.com/eduke32@2401 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polymer/eduke32/Makefile b/polymer/eduke32/Makefile index 941b2dcfb..bf116c52c 100644 --- a/polymer/eduke32/Makefile +++ b/polymer/eduke32/Makefile @@ -63,9 +63,9 @@ ifneq (0,$(USE_LIBVPX)) OURCFLAGS+= -IWindows/include endif ifeq ($(PLATFORM),DARWIN) - # vpx headers and lib from 'port install libvpx' - LIBS+= -L/opt/local/lib - OURCFLAGS+= -I/opt/local/include + # vpx headers and lib from 'port install libvpx' or 'brew install libvpx' + LIBS+= -L/opt/local/lib -L/usr/local/lib + OURCFLAGS+= -I/opt/local/include -I/usr/local/include endif endif