mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Reverted some improvements to Make.config.template
This commit is contained in:
parent
adce2fe42d
commit
bf970b5bf4
3
HISTORY
3
HISTORY
@ -7010,7 +7010,7 @@ Video Disk Recorder Revision History
|
|||||||
which is higher than any normal table id that is broadcast in the EIT data.
|
which is higher than any normal table id that is broadcast in the EIT data.
|
||||||
See PLUGINS.html, section "Electronic Program Guide" for more information.
|
See PLUGINS.html, section "Electronic Program Guide" for more information.
|
||||||
|
|
||||||
2012-03-14: Version 1.7.27
|
2012-03-20: Version 1.7.27
|
||||||
|
|
||||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||||
- Changed the Green button in the "Edit timer" menu from "Once" to "Single"
|
- Changed the Green button in the "Edit timer" menu from "Once" to "Single"
|
||||||
@ -7048,3 +7048,4 @@ Video Disk Recorder Revision History
|
|||||||
- Added missing channel locking to cEIT.
|
- Added missing channel locking to cEIT.
|
||||||
- Fixed reduced bpp support for DVB subtitles (thanks to Rolf Ahrenberg).
|
- Fixed reduced bpp support for DVB subtitles (thanks to Rolf Ahrenberg).
|
||||||
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
||||||
|
- Reverted some improvements to Make.config.template (thanks to Christian Ruppert).
|
||||||
|
@ -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 2.7 2012/03/11 15:33:54 kls Exp $
|
# $Id: Make.config.template 2.8 2012/03/20 11:20:13 kls Exp $
|
||||||
|
|
||||||
### The C compiler and options:
|
### The C compiler and options:
|
||||||
|
|
||||||
CC ?= gcc
|
CC = gcc
|
||||||
CFLAGS ?= -g -O3 -Wall
|
CFLAGS = -g -O3 -Wall
|
||||||
|
|
||||||
CXX ?= g++
|
CXX = g++
|
||||||
CXXFLAGS ?= -g -O3 -Wall -Werror=overloaded-virtual -Wno-parentheses
|
CXXFLAGS = -g -O3 -Wall -Werror=overloaded-virtual -Wno-parentheses
|
||||||
|
|
||||||
ifdef PLUGIN
|
ifdef PLUGIN
|
||||||
CFLAGS += -fPIC
|
CFLAGS += -fPIC
|
||||||
@ -23,23 +23,23 @@ endif
|
|||||||
|
|
||||||
### The directory environment:
|
### The directory environment:
|
||||||
|
|
||||||
PREFIX ?= $(DESTDIR)/usr/local
|
PREFIX = $(DESTDIR)/usr/local
|
||||||
#DVBDIR ?= /usr/src/v4l-dvb/linux
|
#DVBDIR = /usr/src/v4l-dvb/linux
|
||||||
MANDIR ?= $(PREFIX)/man
|
MANDIR = $(PREFIX)/man
|
||||||
BINDIR ?= $(PREFIX)/bin
|
BINDIR = $(PREFIX)/bin
|
||||||
|
|
||||||
LOCDIR ?= ./locale
|
LOCDIR = ./locale
|
||||||
PLUGINDIR ?= ./PLUGINS
|
PLUGINDIR = ./PLUGINS
|
||||||
PLUGINLIBDIR ?= $(PLUGINDIR)/lib
|
PLUGINLIBDIR = $(PLUGINDIR)/lib
|
||||||
VIDEODIR ?= /video
|
VIDEODIR = /video
|
||||||
CONFDIR ?= $(VIDEODIR)
|
CONFDIR = $(VIDEODIR)
|
||||||
|
|
||||||
### The remote control:
|
### The remote control:
|
||||||
|
|
||||||
LIRC_DEVICE ?= /var/run/lirc/lircd
|
LIRC_DEVICE = /var/run/lirc/lircd
|
||||||
|
|
||||||
## Define if you want vdr to not run as root
|
## Define if you want vdr to not run as root
|
||||||
#VDR_USER ?= vdr
|
#VDR_USER = vdr
|
||||||
|
|
||||||
### You don't need to touch the following:
|
### You don't need to touch the following:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user