Commit e9345712 authored by Sam Hocevar's avatar Sam Hocevar

. fixed PPC .deb build

parent 0a883937
......@@ -2,4 +2,3 @@ AUTHORS
INSTALL
README
TODO
ChangeLog
......@@ -66,6 +66,9 @@ int TestMethod( char * psz_var, char * psz_method )
*****************************************************************************/
int TestMMX( void )
{
#ifndef __i386__
return( 0 );
#else
/* FIXME: under beos, gcc does not support the following inline assembly */
#ifdef SYS_BEOS
return( 1 );
......@@ -132,7 +135,7 @@ int TestMMX( void )
return( 0 );
return( 1 );
#endif
#endif
}
......
......@@ -27,6 +27,7 @@
#include <sys/types.h> /* on BSD, uio.h needs types.h */
#include <sys/uio.h> /* "input.h" */
#include <string.h> /* memset */
#include "config.h"
#include "common.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment