diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-18 14:44:03 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-18 14:44:03 +0000 |
commit | 2e0cbc53793c5defec0e76ec10e694a8b82a8d4e (patch) | |
tree | 87efbf5728d342663463a8fdf69f93dc8bfca013 /configure.ac | |
parent | f5813be966f1ba771a57ff435aafb49b859ceae2 (diff) |
Substitute __VENDOR__ with $(VENDORNAME) in disclaimer in XVidtune
app-defaults file
Add --with-vendor-name option to set $(VENDORNAME). Set default
$(VENDORNAME) to "The X.Org Foundation".
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9352e6b..8778333 100644 --- a/configure.ac +++ b/configure.ac @@ -46,6 +46,13 @@ echo $XVIDTUNE_LIBS AC_SUBST(XVIDTUNE_CFLAGS) AC_SUBST(XVIDTUNE_LIBS) +AC_ARG_WITH(vendor-name, + AS_HELP_STRING([--with-vendor-name=VENDOR], + [Vendor name for disclaimer statement]), + [ VENDOR_NAME="$withval" ], + [ VENDOR_NAME="The X.Org Foundation" ]) +AC_SUBST([VENDOR_NAME]) + XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION |