Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Apr 2013 16:35:24 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r250023 - head/lib/libstand
Message-ID:  <201304281635.r3SGZOst074363@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rwatson
Date: Sun Apr 28 16:35:24 2013
New Revision: 250023
URL: http://svnweb.freebsd.org/changeset/base/250023

Log:
  Enable building string functions as part of libstand on mips; the Makefile
  is a bit obfuscated here, as ia64 adds string source files elsewhere, so
  simply exclude it here.
  
  Reviewed by:	imp
  MFC after:	3 days
  Sponsored by:	DARPA, AFRL

Modified:
  head/lib/libstand/Makefile

Modified: head/lib/libstand/Makefile
==============================================================================
--- head/lib/libstand/Makefile	Sun Apr 28 16:35:23 2013	(r250022)
+++ head/lib/libstand/Makefile	Sun Apr 28 16:35:24 2013	(r250023)
@@ -54,9 +54,7 @@ SRCS+= ntoh.c
 
 # string functions from libc
 .PATH: ${.CURDIR}/../libc/string
-.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "powerpc" || \
-	${MACHINE_CPUARCH} == "sparc64" || ${MACHINE_CPUARCH} == "amd64" || \
-	${MACHINE_CPUARCH} == "arm"
+.if ${MACHINE_CPUARCH} != "ia64"
 SRCS+=	bcmp.c bcopy.c bzero.c ffs.c memccpy.c memchr.c memcmp.c memcpy.c \
 	memmove.c memset.c qdivrem.c strcat.c strchr.c strcmp.c strcpy.c \
 	strcspn.c strlen.c strncat.c strncmp.c strncpy.c strpbrk.c \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304281635.r3SGZOst074363>