diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -268,4 +268,5 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 moved #include "dxr3osd.h" from dxr3interface.h to dxr3interface.c removed not needed #includes - fixed bug #1022810: Osd gets pink -- added support for vdr-1.3.13
\ No newline at end of file +- added support for vdr-1.3.13 +- added -fPIC in CXXFLAGS to support amd64 processors
\ No newline at end of file @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.6 2004/10/10 21:31:21 austriancoder Exp $ +# $Id: Makefile,v 1.7 2004/10/18 14:21:51 austriancoder Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: CXX = g++ -CXXFLAGS = -O2 -Wall -Woverloaded-virtual +CXXFLAGS = -fPIC -O2 -Wall -Woverloaded-virtual ### The directory environment: |