Browse Source

contrib: projectM/glew: Don't build projectM (and implicitly glew) when targeting windows on arm/aarch64

OpenGL is unavailable on windows on these architectures.
pull/69/head
Martin Storsjö 8 years ago
parent
commit
85c8fa3f7f
  1. 4
      contrib/src/projectM/rules.mak

4
contrib/src/projectM/rules.mak

@ -3,8 +3,12 @@ PROJECTM_VERSION := 2.0.1
PROJECTM_URL := $(SF)/projectm/$(PROJECTM_VERSION)/projectM-$(PROJECTM_VERSION)-Source.tar.gz
ifdef HAVE_WIN32
ifneq ($(ARCH),arm)
ifneq ($(ARCH),aarch64)
PKGS += projectM
endif
endif
endif
ifeq ($(call need_pkg,"libprojectM"),)
PKGS_FOUND += projectM
endif

Loading…
Cancel
Save