You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
422 B
Plaintext
11 lines
422 B
Plaintext
# FIXME retire after 1.24
|
|
#
|
|
# CTNG_WITH_DEPRECATED(PROG, VAR)
|
|
# Declare a deprecated --with option: instead of --with-PROG=xxx, must use VAR=xxx
|
|
AC_DEFUN([CTNG_WITH_DEPRECATED],
|
|
[AC_ARG_WITH([$1],
|
|
[AS_HELP_STRING([--with-$1=PATH],
|
|
[Deprecated; use $2=PATH instead])],
|
|
[AC_MSG_ERROR([--with-$1=$withval deprecated; use $2=$withval instead])])
|
|
])
|