Changeset 2f503efb30012f749a443ca3c12f5ea1e7618426

Show
Ignore:
Timestamp:
01/31/06 21:00:49 (3 years ago)
Author:
Derk-Jan Hartman <hartman@videolan.org>
git-committer:
Derk-Jan Hartman <hartman@videolan.org> 1138737649 +0000
git-parent:

[978d39b3442d34db2be88322500274a0f50cccd5]

git-author:
Derk-Jan Hartman <hartman@videolan.org> 1138737649 +0000
Message:

* Changed the defined( SYS_DARWIN ) of the --altivec option to a ppc ppc64 check

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/libvlc.c

    r0950551 r2f503ef  
    646646        libvlc.i_cpu &= ~CPU_CAPABILITY_SSE2; 
    647647#endif 
    648 #if defined( __powerpc__ ) || defined( SYS_DARWIN
     648#if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__
    649649    if( !config_GetInt( p_vlc, "altivec" ) ) 
    650650        libvlc.i_cpu &= ~CPU_CAPABILITY_ALTIVEC; 
  • src/libvlc.h

    rec98101 r2f503ef  
    13541354    add_bool( "sse2", 1, NULL, SSE2_TEXT, SSE2_LONGTEXT, VLC_TRUE ); 
    13551355#endif 
    1356 #if defined( __powerpc__ ) || defined( SYS_DARWIN
     1356#if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__
    13571357    add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, VLC_TRUE ); 
    13581358#endif