diff options
author | Tobias Grimm <tobias@e-tobi.loc> | 2009-01-11 10:42:03 +0100 |
---|---|---|
committer | Tobias Grimm <tobias@e-tobi.loc> | 2009-01-11 10:42:03 +0100 |
commit | 04865ef30fc95b92cd4dae3afe681105d6b3943e (patch) | |
tree | 9dab724d187b83b916105de0417a4d037738dbce /Makefile | |
parent | 692099302d01b1b41884dcaed355601b45017691 (diff) | |
download | vdr-plugin-dxr3-04865ef30fc95b92cd4dae3afe681105d6b3943e.tar.gz vdr-plugin-dxr3-04865ef30fc95b92cd4dae3afe681105d6b3943e.tar.bz2 |
libraries should always be compiled with "-fPIC", otherwise they won't build on amd64
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char VERSION\[\] *=' $(PLUGIN).c | awk '{ p ### The C++ compiler and options: CXX = g++ -CXXFLAGS = -O2 -Wall -Woverloaded-virtual +CXXFLAGS = -O2 -fPIC -Wall -Woverloaded-virtual ### The directory environment: |