diff options
author | austriancoder <austriancoder> | 2004-10-18 14:21:51 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-10-18 14:21:51 +0000 |
commit | 38d94f20580ae0da1cede7acd424155cfd6585e9 (patch) | |
tree | 6e3a501c5b4eb76afbd7ce7ce38e34e729567c76 /Makefile | |
parent | 8c7ff288fc2ab28b668dc51509d96e7162be1ea3 (diff) | |
download | vdr-plugin-dxr3-38d94f20580ae0da1cede7acd424155cfd6585e9.tar.gz vdr-plugin-dxr3-38d94f20580ae0da1cede7acd424155cfd6585e9.tar.bz2 |
added -fPIC in CXXFLAGS to support amd64 processors
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |