* acx.m4 (ACX_PKGVERSION, ACX_BUGURL): Define.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 23 Mar 2007 02:51:56 +0000 (02:51 +0000)
committerJoseph Myers <jsm28@gcc.gnu.org>
Fri, 23 Mar 2007 02:51:56 +0000 (02:51 +0000)
From-SVN: r123147

config/ChangeLog
config/acx.m4

index f0cda7a8b54ae6fbd5577ede8f215cc5a697b60e..250c3ff6a34bf546374e50309ceb0415df20c1bf 100644 (file)
@@ -1,3 +1,7 @@
+2007-03-23  Joseph Myers  <joseph@codesourcery.com>
+
+       * acx.m4 (ACX_PKGVERSION, ACX_BUGURL): Define.
+
 2007-03-07  Andreas Schwab  <schwab@suse.de>
 
        * acx.m4 (GCC_TARGET_TOOL): Expand backquotes outside
index a8970759f5ca0b096e048256772447a601e98e37..73afe8d70ce2def02eef8688159eff0b259f703b 100644 (file)
@@ -552,3 +552,41 @@ AC_DEFUN([ACX_CHECK_PROG_VER],[
     $1="${CONFIG_SHELL-/bin/sh} $ac_aux_dir/missing $2"
   fi
 ])
+
+dnl Support the --with-pkgversion configure option.
+dnl ACX_PKGVERSION(default-pkgversion)
+AC_DEFUN([ACX_PKGVERSION],[
+  AC_ARG_WITH(pkgversion,
+    AS_HELP_STRING([--with-pkgversion=PKG],
+                   [Use PKG in the version string in place of "$1"]),
+    [case "$withval" in
+      yes) AC_MSG_ERROR([package version not specified]) ;;
+      no)  PKGVERSION= ;;
+      *)   PKGVERSION="($withval) " ;;
+     esac],
+    PKGVERSION="($1) "
+  )
+  AC_SUBST(PKGVERSION)
+])
+
+dnl Support the --with-bugurl configure option.
+dnl ACX_BUGURL(default-bugurl)
+AC_DEFUN([ACX_BUGURL],[
+  AC_ARG_WITH(bugurl,
+    AS_HELP_STRING([--with-bugurl=URL],
+                   [Direct users to URL to report a bug]),
+    [case "$withval" in
+      yes) AC_MSG_ERROR([bug URL not specified]) ;;
+      no)  REPORT_BUGS_TO="";
+          REPORT_BUGS_TEXI=""
+          ;;
+      *)   REPORT_BUGS_TO="<$withval>"
+          REPORT_BUGS_TEXI="@uref{`echo $withval | sed 's/@/@@/g'`}"
+          ;;
+     esac],
+     REPORT_BUGS_TO="<$1>"
+     REPORT_BUGS_TEXI="@uref{$1}"
+  )
+  AC_SUBST(REPORT_BUGS_TO)
+  AC_SUBST(REPORT_BUGS_TEXI)
+])