aboutsummaryrefslogtreecommitdiffstats
path: root/macros/compiler-flags.m4
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>1998-09-28 23:25:28 +0800
committerMartin Baulig <martin@src.gnome.org>1998-09-28 23:25:28 +0800
commitdcb862d546cb7e2c715ab0dae1b516f27f29b8fb (patch)
treeb43ee8fe7be3e7eebfc5ae450065180365406b45 /macros/compiler-flags.m4
parent84cf91f6158c8dac79347b1cf3528dc34fb658dc (diff)
downloadgsoc2013-evolution-dcb862d546cb7e2c715ab0dae1b516f27f29b8fb.tar.gz
gsoc2013-evolution-dcb862d546cb7e2c715ab0dae1b516f27f29b8fb.tar.zst
gsoc2013-evolution-dcb862d546cb7e2c715ab0dae1b516f27f29b8fb.zip
New configure parameter to add `-Wunused' to the warning flags.
1998-09-28 Martin Baulig <martin@home-of-linux.org> * compiler-flags.m4 (--enable-warn-unused): New configure parameter to add `-Wunused' to the warning flags. svn path=/trunk/; revision=408
Diffstat (limited to 'macros/compiler-flags.m4')
-rw-r--r--macros/compiler-flags.m417
1 files changed, 15 insertions, 2 deletions
diff --git a/macros/compiler-flags.m4 b/macros/compiler-flags.m4
index aec45d591f..710ff7319c 100644
--- a/macros/compiler-flags.m4
+++ b/macros/compiler-flags.m4
@@ -5,6 +5,19 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[
AC_ARG_ENABLE(compile-warnings,
[ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.],,enable_compile_warnings=minimum)
+ AC_ARG_ENABLE(warn-unused,
+ [ --enable-warn-unused Warn about unused variables and parameters],,
+ enable_warn_unused=no)
+
+ AC_MSG_CHECKING(what "unused" warning flags to use)
+ wunusedCFLAGS=
+ if test "x$enable_warn_unused" = xyes ; then
+ wunusedCFLAGS='-Wunused'
+ else
+ wunusedCFLAGS='-Wno-unused'
+ fi
+ AC_MSG_RESULT($wunusedCFLAGS)
+
AC_MSG_CHECKING(what warning flags to pass to the C compiler)
warnCFLAGS=
if test "x$enable_compile_warnings" != "xno"; then
@@ -15,14 +28,14 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[
esac
if test "x$enable_compile_warnings" = "xyes"; then
- warnCFLAGS="$warnCFLAGS -W -Wno-unused -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith"
+ warnCFLAGS="$warnCFLAGS -W $wunusedCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith"
fi
fi
fi
AC_MSG_RESULT($warnCFLAGS)
AC_ARG_ENABLE(iso-c,
- [ --enable-iso-c Try to warn if code is not ISO C ],,
+ [ --enable-iso-c Try to warn if code is not ISO C ],,
enable_iso_c=no)
AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-themes/kde4-windeco-crystal/Makefile?h=mate-1.20&id=1f2d6176cb76f3173c76d1ee4ca6616a6df8d8f5'>Chase ffmpeg 3.3 update (ABI changes)riggs2017-04-251-1/+1 | | | | | PR: 218658 Submitted by: riggs * Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andtcberner2016-08-241-2/+2 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961