mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
set origin and package name
Original commit message from CVS: set origin and package name
This commit is contained in:
parent
7b6f2061b4
commit
894bac8c4b
1 changed files with 14 additions and 2 deletions
16
configure.ac
16
configure.ac
|
@ -1776,6 +1776,7 @@ dnl ############################
|
|||
|
||||
dnl set license and copyright notice
|
||||
AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
|
||||
|
||||
dnl package name in plugins
|
||||
AC_ARG_WITH(package-name,
|
||||
AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
|
||||
|
@ -1784,9 +1785,20 @@ AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
|
|||
no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
|
||||
*) GST_PACKAGE="${withval}" ;;
|
||||
esac],
|
||||
[GST_PACKAGE="GStreamer Plugins"]) dnl Default value
|
||||
[
|
||||
dnl default value
|
||||
if test "x$GST_CVS" = "xyes"
|
||||
then
|
||||
dnl nano >= 1
|
||||
GST_PACKAGE="GStreamer CVS/prerelease"
|
||||
else
|
||||
GST_PACKAGE="GStreamer source release"
|
||||
fi
|
||||
]
|
||||
)
|
||||
AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
|
||||
AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
|
||||
|
||||
dnl package origin URL
|
||||
AC_ARG_WITH(package-origin,
|
||||
AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
|
||||
|
@ -1795,7 +1807,7 @@ AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plu
|
|||
no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
|
||||
*) GST_ORIGIN="${withval}" ;;
|
||||
esac],
|
||||
[GST_ORIGIN="http://gstreamer.net/"]) dnl Default value
|
||||
[GST_ORIGIN="http://gstreamer.freedesktop.org/"]) dnl Default value
|
||||
AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
|
||||
AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
|
||||
|
||||
|
|
Loading…
Reference in a new issue