mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
26 lines
883 B
Diff
26 lines
883 B
Diff
--- configure.ac.orig 2019-11-04 02:09:53.000000000 -0800
|
|
+++ configure.ac 2019-11-04 02:13:28.000000000 -0800
|
|
@@ -83,8 +83,9 @@
|
|
# -Werror, so we will only add that option afterwards. For more information, see
|
|
# the discussion at http://lists.gnu.org/archive/html/bug-autoconf/2010-01/msg00031.html
|
|
|
|
-# Pedantic errors please
|
|
-CFLAGS="$CFLAGS -Wall -std=gnu99 -pedantic"
|
|
+# no pedantic errors please
|
|
+# CFLAGS="$CFLAGS -Wall -std=gnu99 -pedantic"
|
|
+CFLAGS="$CFLAGS -Wall -std=gnu99"
|
|
|
|
# Find the standard math functions
|
|
# Taken from http://www.flameeyes.eu/autotools-mythbuster/autoconf/finding.html
|
|
@@ -93,8 +94,8 @@
|
|
AC_MSG_ERROR([unable to find the log10() function])
|
|
])
|
|
|
|
-# Warnings as errors please
|
|
-CFLAGS="$CFLAGS -Werror"
|
|
+# no warnings as errors please
|
|
+# CFLAGS="$CFLAGS -Werror"
|
|
|
|
# Find GLib support via pkg-config
|
|
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.28])
|