diff options
author | Emil Velikov <[email protected]> | 2017-04-17 15:07:44 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-04-17 15:07:44 +0100 |
commit | 9915753e631a203d7f22bfa308fbf688644a8a37 (patch) | |
tree | e3fbdd90a8a6d61608bd9698a8d1b1462a77a3f4 /configure.ac | |
parent | 19aec22c75a08a683483b8f96fc15f83d42d5a76 (diff) |
configure.ac: print deprecation warning as needed
The warning should be printed only when one explicitly uses the
deprecated configure toggle.
Fixes: 7748c3f5eb1 ("configure.ac: deprecate --with-egl-platforms over
--with-platforms")
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2dd5cf014b5..e18f12f0b95 100644 --- a/configure.ac +++ b/configure.ac @@ -2151,7 +2151,6 @@ AC_ARG_WITH([egl-platforms], [with_egl_platforms=auto]) if test "x$with_egl_platforms" = xauto; then - AC_MSG_WARN([--with-egl-platforms is deprecated. Use --with-plaforms instead.]) if test "x$enable_egl" = xyes; then if test "x$enable_gbm" = xyes; then with_egl_platforms="x11,drm" @@ -2161,6 +2160,8 @@ if test "x$with_egl_platforms" = xauto; then else with_egl_platforms="" fi +else + AC_MSG_WARN([--with-egl-platforms is deprecated. Use --with-plaforms instead.]) fi dnl |