mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Removed -fPIC from VDR's and libsi's Makefile
This commit is contained in:
parent
af9266d21c
commit
07093f79de
@ -1913,3 +1913,6 @@ Dominique Simon <d.simon@gmx.net>
|
|||||||
|
|
||||||
M. Kiesel <vdr@continuity.cjb.net>
|
M. Kiesel <vdr@continuity.cjb.net>
|
||||||
for reporting that the 'runvdr' script still used DVBDIR
|
for reporting that the 'runvdr' script still used DVBDIR
|
||||||
|
|
||||||
|
Prakash Punnoor <prakash@punnoor.de>
|
||||||
|
for suggesting to remove -fPIC from VDR's and libsi's Makefile
|
||||||
|
1
HISTORY
1
HISTORY
@ -4735,3 +4735,4 @@ Video Disk Recorder Revision History
|
|||||||
currently open (i.e. a write lock on the schedules data can't be achieved).
|
currently open (i.e. a write lock on the schedules data can't be achieved).
|
||||||
- Fixed handling VPS timers in case the EPG event hasn't been 'seen' in a while.
|
- Fixed handling VPS timers in case the EPG event hasn't been 'seen' in a while.
|
||||||
- Fixed calculating the cache size in cUnbufferedFile::Read() (thanks to Artur Skawina).
|
- Fixed calculating the cache size in cUnbufferedFile::Read() (thanks to Artur Skawina).
|
||||||
|
- Removed -fPIC from VDR's and libsi's Makefile (suggested by Prakash Punnoor).
|
||||||
|
@ -6,15 +6,15 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Make.config.template 1.8 2006/04/15 12:28:03 kls Exp $
|
# $Id: Make.config.template 1.9 2006/05/26 10:41:46 kls Exp $
|
||||||
|
|
||||||
### The C compiler and options:
|
### The C compiler and options:
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -O2
|
CFLAGS = -g -O2 -Wall
|
||||||
|
|
||||||
CXX = g++
|
CXX = g++
|
||||||
CXXFLAGS = -fPIC -g -O2 -Wall -Woverloaded-virtual
|
CXXFLAGS = -g -O2 -Wall -Woverloaded-virtual
|
||||||
|
|
||||||
### The directory environment:
|
### The directory environment:
|
||||||
|
|
||||||
|
6
Makefile
6
Makefile
@ -4,15 +4,15 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Makefile 1.92 2006/05/19 12:00:32 kls Exp $
|
# $Id: Makefile 1.93 2006/05/26 10:42:17 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
CC ?= gcc
|
CC ?= gcc
|
||||||
CFLAGS ?= -O2
|
CFLAGS ?= -g -O2 -Wall
|
||||||
|
|
||||||
CXX ?= g++
|
CXX ?= g++
|
||||||
CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual
|
CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual
|
||||||
|
|
||||||
LSIDIR = ./libsi
|
LSIDIR = ./libsi
|
||||||
MANDIR = /usr/local/man
|
MANDIR = /usr/local/man
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#
|
#
|
||||||
# Makefile for a libsi
|
# Makefile for a libsi
|
||||||
#
|
#
|
||||||
# $Id: Makefile 1.5 2005/05/29 11:30:00 kls Exp $
|
# $Id: Makefile 1.6 2006/05/26 10:40:19 kls Exp $
|
||||||
|
|
||||||
### The C++ compiler and options:
|
### The C++ compiler and options:
|
||||||
|
|
||||||
CXX ?= g++
|
CXX ?= g++
|
||||||
CXXFLAGS ?= -fPIC -O2 -g -Wall -Woverloaded-virtual
|
CXXFLAGS ?= -O2 -g -Wall -Woverloaded-virtual
|
||||||
AR = ar
|
AR = ar
|
||||||
ARFLAGS = ru
|
ARFLAGS = ru
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
Loading…
Reference in New Issue
Block a user