comparison configure @ 5572:8cd761968f35

BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com> - tvi interface changes, grab_audio/video now returns timestamp! - tv demuxer gets 'ds' hint too - some verbose skip/dup counters to mencoder - tvi_bsdbt848.c updates - aviwrite/mencoder size types int->off_t
author arpi
date Fri, 12 Apr 2002 10:40:38 +0000
parents 0869f86ac983
children efc798ab5822
comparison
equal deleted inserted replaced
5571:124bfc43c044 5572:8cd761968f35
3226 # dvdread support requires this (for off64_t) 3226 # dvdread support requires this (for off64_t)
3227 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE" 3227 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
3228 fi 3228 fi
3229 fi 3229 fi
3230 3230
3231 echocheck "ftello()"
3232 # if we dont have ftello map it to ftell
3233 cat > $TMPC << EOF
3234 #include <stdio.h>
3235 int main (void) { ftello(stdin); return 0; }
3236 EOF
3237 _ftello=no
3238 cc_check && _ftello=yes
3239 if test "$_ftello" = yes ; then
3240 _def_ftello='#define HAVE_FTELLO 1'
3241 else
3242 _def_ftello='#undef HAVE_FTELLO'
3243 fi
3244 echores "$_ftello"
3245
3231 # Determine OS dependent libs 3246 # Determine OS dependent libs
3232 if cygwin ; then 3247 if cygwin ; then
3233 _confcygwin='TARGET_CYGWIN = yes' 3248 _confcygwin='TARGET_CYGWIN = yes'
3234 _def_confwin32='#define WIN32' 3249 _def_confwin32='#define WIN32'
3235 else 3250 else
3504 /* set up audio OUTBURST. Do not change this! */ 3519 /* set up audio OUTBURST. Do not change this! */
3505 #define OUTBURST 512 3520 #define OUTBURST 512
3506 3521
3507 /* Define this if your system has the header file for the OSS sound interface */ 3522 /* Define this if your system has the header file for the OSS sound interface */
3508 $_def_sys_soundcard 3523 $_def_sys_soundcard
3524
3525 /* Define this if your system uses ftello() for off_t seeking */
3526
3527 $_def_ftello
3528 #ifndef HAVE_FTELLO
3529 # define ftello(a) ftell(a)
3530 #endif
3509 3531
3510 /* Define this if your system has the "malloc.h" header file */ 3532 /* Define this if your system has the "malloc.h" header file */
3511 $_def_malloc 3533 $_def_malloc
3512 3534
3513 /* memalign is mapped to malloc if unsupported */ 3535 /* memalign is mapped to malloc if unsupported */