Displaying 2 results from an estimated 2 matches for "36ac6c6".
Did you mean:
16ac56c6
2012 Feb 02
2
PATCH: Don't force automake 1.11 AM_SILENT_RULES
Don't force automake 1.11 AM_SILENT_RULES on folks who don't have it.
diff --git a/configure.ac b/configure.ac
index 6a65fcc..36ac6c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@
?AC_INIT(src/flac/main.c)
?AM_INIT_AUTOMAKE(flac, 1.2.1)
-AM_SILENT_RULES([yes])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
?# Don't automagically regenerate autoconf/automake generated files unless
?# explicitly reque...
2012 Feb 05
2
[PATCH 1/2] OS/2 also needs "-no-undefined" to build a DLL
---
configure.ac | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 36ac6c6..32bdd5f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -103,9 +103,11 @@ esac
AC_SUBST(OBJ_FORMAT)
case "$host" in
- *-*-cygwin|*mingw*)
- # define this variable for enabling strict exports with libtool; for now, it's only supported by Win32
+ *-*-cygwin|*mingw*|*emx*)
+ # def...