head	1.2;
access;
symbols
	RELEASE_5_3_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2004.12.23.09.42.36;	author clement;	state dead;
branches;
next	1.1;

1.1
date	2004.07.17.19.35.55;	author krion;	state Exp;
branches;
next	;


desc
@@


1.2
log
@- Update to 5.2.1

PR:		75392
Submitted by:	delphij
@
text
@--- integer.cpp.orig	Sun Jul 18 00:46:23 2004
+++ integer.cpp	Sun Jul 18 00:46:46 2004
@@@@ -20,7 +20,7 @@@@
 #ifdef SSE2_INTRINSICS_AVAILABLE
 	#ifdef __GNUC__
 		#include <xmmintrin.h>
-		#include <malloc.h>
+		#include <stdlib.h>
 		#include <signal.h>
 		#include <setjmp.h>
 	#else
@@@@ -56,7 +56,7 @@@@
 	{
 		void *p;
 	#ifdef __GNUC__
-		while (!(p = memalign(16, sizeof(T)*n)))
+		while (!(p = malloc(sizeof(T)*n)))
 	#else
 		while (!(p = _mm_malloc(sizeof(T)*n, 16)))
 	#endif
@


1.1
log
@Update to 5.2
Fix build with gcc-3.4
Assign maintainership to submitter.

PR:		ports/69204
Submitted by:	Xin LI <delphij@@frontfree.net>
@
text
@@

