dvda-author, initial recipe (#1674)

This commit is contained in:
Schrijvers Luc
2017-09-27 22:26:16 +02:00
committed by GitHub
parent c8c86f5997
commit 137a885fe2
2 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
From d3eea1808a670f58ec4dad6302ebfc86f0c71d7f Mon Sep 17 00:00:00 2001
From: begasus <begasus@gmail.com>
Date: Wed, 27 Sep 2017 21:17:17 +0200
Subject: fix -fno-stack-protector compiler error
diff --git a/src/Makefile.am b/src/Makefile.am
index 27d591d..2b7e57d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2,7 +2,7 @@ bin_PROGRAMS=dvda
dvda_SOURCES=amg.c ats.c atsi.c audio.c dvda-author.c samg.c
EXTRA_DIST=amg.h ats.h atsi.h audio.h samg.h Makefile.am.debug
SUBDIRS=libFLAC
-AM_CFLAGS=-O3 -Wall -fstack-protector -D_FORTIFY_SOURCE=2
+AM_CFLAGS=-O3 -Wall -fno-stack-protector -D_FORTIFY_SOURCE=2
AM_CPPFLAGS=-IlibFLAC/include
AM_LDFLAGS= -s
LDADD=libFLAC/libFLAC.a -lm
--
2.14.1