725d4a96c7
It's been decided to allow the Fedora 27 Mass Rebuild to take place
before OCaml 4.05.0 is added to Fedora. To avoid this package
accidentally getting included in the mass rebuild, this commit reverts
the new upstream version, and then it will be un-re-verted after the
Mass Rebuild.
This reverts commit 40c060b8ec
.
28 lines
670 B
Diff
28 lines
670 B
Diff
From 77475cec6718b9f15bc6e8e5c7e6edb936b93cd2 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 3/9] configure: Allow user defined C compiler flags.
|
|
|
|
---
|
|
configure | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/configure b/configure
|
|
index 3b2636035..d53d90367 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1912,6 +1912,10 @@ if $with_fpic; then
|
|
echo "#define CAML_WITH_FPIC" >> m.h
|
|
fi
|
|
|
|
+# Allow user defined C Compiler flags
|
|
+bytecccompopts="$bytecccompopts $CFLAGS"
|
|
+nativecccompopts="$nativecccompopts $CFLAGS"
|
|
+
|
|
# Finish generated files
|
|
|
|
cclibs="$cclibs $mathlib"
|
|
--
|
|
2.13.1
|
|
|