diff options
author | phintuka <phintuka> | 2006-06-04 11:00:04 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-06-04 11:00:04 +0000 |
commit | 446fcba07736fc0637649ff711489c8ef9da426c (patch) | |
tree | ed39857a4656406f137dbeba2f733cb6931bc1cd /Makefile | |
parent | b221726a183066704f6af552fbe663f2959f190c (diff) | |
download | xineliboutput-446fcba07736fc0637649ff711489c8ef9da426c.tar.gz xineliboutput-446fcba07736fc0637649ff711489c8ef9da426c.tar.bz2 |
x86 fixes
const added to several arguments and data
control stream write result checks added
possible deadlock removed from vdr_plugin_keypress
OSD endian problems fixed
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1 2006-06-03 09:44:41 phintuka Exp $ +# $Id: Makefile,v 1.2 2006-06-04 11:00:04 phintuka Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -291,14 +291,12 @@ xine_sxfe_frontend_standalone.o: xine_sxfe_frontend.c xine_frontend.c \ xine_frontend.h xine_input_vdr.h xine_osd_command.h \ xine/post.h logdefs.h xine_frontend_main.c xine_frontend_lirc.c \ xine_frontend_lirc.c xineliboutput.c - $(CC) $(CFLAGS) -c $(DEFINES) -DFE_STANDALONE $(INCLUDES) $(OPTFLAGS) \ - xine_sxfe_frontend.c -o $@ + $(CC) $(CFLAGS) -c $(DEFINES) -DFE_STANDALONE $(INCLUDES) $(OPTFLAGS) xine_sxfe_frontend.c -o $@ xine_fbfe_frontend_standalone.o: xine_fbfe_frontend.c xine_frontend.c \ xine_frontend.h xine_input_vdr.h xine_osd_command.h \ xine/post.h logdefs.h xine_frontend_main.c xine_frontend_lirc.c \ xine_frontend_lirc.c xineliboutput.c - $(CC) $(CFLAGS) -c $(DEFINES) -DFE_STANDALONE $(INCLUDES) $(OPTFLAGS) \ - xine_fbfe_frontend.c -o $@ + $(CC) $(CFLAGS) -c $(DEFINES) -DFE_STANDALONE $(INCLUDES) $(OPTFLAGS) xine_fbfe_frontend.c -o $@ # # targets |