pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk/configure



Module Name:    pkgsrc
Committed By:   gdt
Date:           Sat Aug 17 13:04:41 UTC 2024

Modified Files:
        pkgsrc/mk/configure: configure.mk

Log Message:
mk/configure/configure.mk: Warn when USE_CMAKE is used

USE_CMAKE is deprecated, but not gone because some packages aren't yet
converted.  It's too hard to figure this out, not being apparent from
reading the mk files, so add a warning.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 pkgsrc/mk/configure/configure.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/configure/configure.mk
diff -u pkgsrc/mk/configure/configure.mk:1.32 pkgsrc/mk/configure/configure.mk:1.33
--- pkgsrc/mk/configure/configure.mk:1.32       Thu Jan 12 19:37:35 2023
+++ pkgsrc/mk/configure/configure.mk    Sat Aug 17 13:04:41 2024
@@ -1,4 +1,4 @@
-# $NetBSD: configure.mk,v 1.32 2023/01/12 19:37:35 markd Exp $
+# $NetBSD: configure.mk,v 1.33 2024/08/17 13:04:41 gdt Exp $
 #
 # = Package-settable variables =
 #
@@ -83,6 +83,7 @@ _BUILD_DEFS+=         CONFIGURE_ENV CONFIGURE_A
 .  include "replace-localedir.mk"
 .endif
 .if defined(USE_CMAKE)
+   WARNINGS+= "USE_CMAKE is deprecated; use devel/cmake/build.mk instead."
 .  include "cmake.mk"
 .endif
 .if defined(_CMAKE_CONFIGURE_SETTINGS)



Home | Main Index | Thread Index | Old Index