Changeset 6e14bd65d205ee284d603028e57f63d2e582adfb

Show
Ignore:
Timestamp:
10/03/06 18:57:31 (3 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1142013451 +0000
git-parent:

[e03445eb7f395af7c07f6445b2cb97a27bcb64ec]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1142013451 +0000
Message:

Remove broken lldiv check and only use lldiv replacement on BeOS

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    r3f83680 r6e14bd6  
    405405 
    406406dnl Check for usual libc functions 
    407 AC_CHECK_FUNCS(strdup strndup atof lldiv
     407AC_CHECK_FUNCS(strdup strndup atof
    408408AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)]) 
    409409AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)]) 
  • include/vlc_common.h

    rabed251 r6e14bd6  
    874874#endif 
    875875 
    876 #if !defined(HAVE_LLDIV) || defined(SYS_BEOS) 
     876#if defined(SYS_BEOS) 
    877877    typedef struct { 
    878878        long long quot; /* Quotient. */ 
  • src/extras/libc.c

    rabed251 r6e14bd6  
    347347 * lldiv: returns quotient and remainder 
    348348 *****************************************************************************/ 
    349 #if !defined(HAVE_LLDIV) || defined(SYS_BEOS) 
     349#if defined(SYS_BEOS) 
    350350lldiv_t vlc_lldiv( long long numer, long long denom ) 
    351351{