mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
set origin and package name
Original commit message from CVS: set origin and package name
This commit is contained in:
parent
b9a69ae7f7
commit
a7c191247c
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
|
dnl set license and copyright notice
|
||||||
AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
|
AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
|
||||||
|
|
||||||
dnl package name in plugins
|
dnl package name in plugins
|
||||||
AC_ARG_WITH(package-name,
|
AC_ARG_WITH(package-name,
|
||||||
AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
|
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) ;;
|
no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
|
||||||
*) GST_PACKAGE="${withval}" ;;
|
*) GST_PACKAGE="${withval}" ;;
|
||||||
esac],
|
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_MSG_NOTICE(Using $GST_PACKAGE as package name)
|
||||||
AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
|
AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
|
||||||
|
|
||||||
dnl package origin URL
|
dnl package origin URL
|
||||||
AC_ARG_WITH(package-origin,
|
AC_ARG_WITH(package-origin,
|
||||||
AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
|
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) ;;
|
no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
|
||||||
*) GST_ORIGIN="${withval}" ;;
|
*) GST_ORIGIN="${withval}" ;;
|
||||||
esac],
|
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_MSG_NOTICE(Using $GST_ORIGIN as package origin)
|
||||||
AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
|
AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue