7335bbf1f3
- REMOVED labltk and camlp4 packages, since these are now packaged separately upstream. - Upstream includes fix for stack alignment issues on i686, so remove hack. - Upstream now uses mkstemp where available, so patch removed. - Upstream includes Aarch64 backend, so remove our own backport. - Drop BR on ocaml-srpm-macros, since it is now included in Fedora.
28 lines
693 B
Diff
28 lines
693 B
Diff
From 96ec5173787ce5e03dca7da6527c4cc732772051 Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Tue, 29 May 2012 20:44:18 +0100
|
|
Subject: [PATCH 05/10] configure: Allow user defined C compiler flags.
|
|
|
|
---
|
|
configure | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/configure b/configure
|
|
index 74d489f..251ee2c 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1629,6 +1629,10 @@ case "$buggycc" in
|
|
nativecccompopts="$nativecccompopts -fomit-frame-pointer";;
|
|
esac
|
|
|
|
+# Allow user defined C Compiler flags
|
|
+bytecccompopts="$bytecccompopts $CFLAGS"
|
|
+nativecccompopts="$nativecccompopts $CFLAGS"
|
|
+
|
|
# Finish generated files
|
|
|
|
cclibs="$cclibs $mathlib"
|
|
--
|
|
1.9.0
|
|
|