mirror of https://github.com/ossrs/srs.git
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.
9 lines
290 B
Plaintext
9 lines
290 B
Plaintext
3 years ago
|
AC_DEFUN([AC_INSTALL_PREFIX],
|
||
|
[ac_cv_install_prefix="$prefix";
|
||
|
if test x"$ac_cv_install_prefix" = x"NONE" ; then
|
||
|
ac_cv_install_prefix="$ac_default_prefix";
|
||
|
fi
|
||
|
AC_DEFINE_UNQUOTED(INSTALL_PREFIX, "$ac_cv_install_prefix",
|
||
|
[prefix where we look for installed files])
|
||
|
])
|