1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-27 04:21:53 +02:00

. fixed PPC .deb build

This commit is contained in:
Sam Hocevar 2000-08-22 15:58:32 +00:00
parent 0a88393778
commit e9345712f6
3 changed files with 5 additions and 2 deletions

1
debian/vlc.docs vendored
View File

@ -2,4 +2,3 @@ AUTHORS
INSTALL INSTALL
README README
TODO TODO
ChangeLog

View File

@ -66,6 +66,9 @@ int TestMethod( char * psz_var, char * psz_method )
*****************************************************************************/ *****************************************************************************/
int TestMMX( void ) int TestMMX( void )
{ {
#ifndef __i386__
return( 0 );
#else
/* FIXME: under beos, gcc does not support the following inline assembly */ /* FIXME: under beos, gcc does not support the following inline assembly */
#ifdef SYS_BEOS #ifdef SYS_BEOS
return( 1 ); return( 1 );
@ -132,7 +135,7 @@ int TestMMX( void )
return( 0 ); return( 0 );
return( 1 ); return( 1 );
#endif
#endif #endif
} }

View File

@ -27,6 +27,7 @@
#include <sys/types.h> /* on BSD, uio.h needs types.h */ #include <sys/types.h> /* on BSD, uio.h needs types.h */
#include <sys/uio.h> /* "input.h" */ #include <sys/uio.h> /* "input.h" */
#include <string.h> /* memset */
#include "config.h" #include "config.h"
#include "common.h" #include "common.h"