mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added "DEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE" to Make.config.template
This commit is contained in:
parent
c7ce1c37e3
commit
3def525dc4
@ -2402,3 +2402,6 @@ Edgar Hucek <gimli@dark-green.com>
|
|||||||
|
|
||||||
Johann Friedrichs <johann.friedrichs@web.de>
|
Johann Friedrichs <johann.friedrichs@web.de>
|
||||||
for fixing incrementing the continuity counter in cPatPmtGenerator::GetPmt()
|
for fixing incrementing the continuity counter in cPatPmtGenerator::GetPmt()
|
||||||
|
for pointing out that "DEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
|
||||||
|
-D_LARGEFILE64_SOURCE" should be added to Make.config.
|
||||||
|
to Make.config.template (thanks to Johann Friedrichs for pointing this out).
|
||||||
|
6
HISTORY
6
HISTORY
@ -5912,7 +5912,7 @@ Video Disk Recorder Revision History
|
|||||||
can handle DVB-S2. The #define is still there to allow people with older drivers
|
can handle DVB-S2. The #define is still there to allow people with older drivers
|
||||||
who don't need DVB-S2 to use this version without pathcing.
|
who don't need DVB-S2 to use this version without pathcing.
|
||||||
|
|
||||||
2009-01-16: Version 1.7.4
|
2009-01-18: Version 1.7.4
|
||||||
|
|
||||||
- Removed the '#define FE_CAN_2ND_GEN_MODULATION', since it was wrong and the
|
- Removed the '#define FE_CAN_2ND_GEN_MODULATION', since it was wrong and the
|
||||||
flag is now in the driver, anyway.
|
flag is now in the driver, anyway.
|
||||||
@ -5935,3 +5935,7 @@ Video Disk Recorder Revision History
|
|||||||
caused a problem with removing, no others were removed any more and an ongoing
|
caused a problem with removing, no others were removed any more and an ongoing
|
||||||
recording could fill up the disk and cause other recordings to be deleted
|
recording could fill up the disk and cause other recordings to be deleted
|
||||||
automatically (reported by Reinhard Nissl).
|
automatically (reported by Reinhard Nissl).
|
||||||
|
- Added "DEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE"
|
||||||
|
to Make.config.template (thanks to Johann Friedrichs for pointing this out).
|
||||||
|
Plugin authors should add this line to their Makefile or Make.config if they use
|
||||||
|
file access functions that need special versions for 64 bit offsets.
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# 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.16 2008/01/13 12:54:09 kls Exp $
|
# $Id: Make.config.template 2.1 2009/01/18 10:46:13 kls Exp $
|
||||||
|
|
||||||
### The C compiler and options:
|
### The C compiler and options:
|
||||||
|
|
||||||
@ -19,6 +19,7 @@ CXXFLAGS = -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
|
|||||||
ifdef PLUGIN
|
ifdef PLUGIN
|
||||||
CFLAGS += -fPIC
|
CFLAGS += -fPIC
|
||||||
CXXFLAGS += -fPIC
|
CXXFLAGS += -fPIC
|
||||||
|
DEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
### The directory environment:
|
### The directory environment:
|
||||||
|
Loading…
Reference in New Issue
Block a user