From eb96f842666928ad46f0273a153cfc660f31bbb6 Mon Sep 17 00:00:00 2001 From: MANTANI Nobutaka Date: Sun, 10 Aug 2003 14:03:39 +0000 Subject: Remove parentheses from .if statement to avoid make error. Submitted by: Kay Lehmann --- multimedia/libxine/Makefile | 2 +- multimedia/xine/Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'multimedia') diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile index d5342302c774..8722c90d42bc 100644 --- a/multimedia/libxine/Makefile +++ b/multimedia/libxine/Makefile @@ -50,7 +50,7 @@ MAN1= xine-config.1 .include # PRId64 macro is not defined -.if (${OSVERSION} < 500028) +.if ${OSVERSION} < 500028 EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src:xine-engine:audio_out.c .endif diff --git a/multimedia/xine/Makefile b/multimedia/xine/Makefile index 480ddd64fc37..dcfe73d58113 100644 --- a/multimedia/xine/Makefile +++ b/multimedia/xine/Makefile @@ -35,7 +35,7 @@ MAN1= aaxine.1 xine-bugreport.1 xine-check.1 xine-remote.1 xine.1 .include -.if (${ARCH} == "i386") +.if ${ARCH} == "i386" .if !defined(WITHOUT_WIN32_CODECS) RUN_DEPENDS= ${CODEC_DETECTION_FILE}:${CODEC_PORT} @@ -44,12 +44,12 @@ CODEC_DETECTION_FILE!= ${MAKE} -f ${CODEC_PORT}/Makefile -V CODEC_DETECTION_FILE .endif .endif -.if (${OSVERSION} == 500043) +.if ${OSVERSION} == 500043 EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src:xitk:common.h .endif # mbrtowc() is not implemented -.if (${OSVERSION} < 500039) +.if ${OSVERSION} < 500039 CONFIGURE_ARGS+= --disable-mbs .endif -- cgit