diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-03-23 02:51:30 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-03-23 02:51:30 +0000 |
commit | 5962fc1d5c956c68776c045ce9041419cf9ba7ef (patch) | |
tree | bded3aeff05b192bb6ff95e2a6bd7572ea2a0750 | |
parent | 9158ee9c01078ac58f4ff7129524cdce9aaf6ab8 (diff) | |
download | newlib-5962fc1d5c956c68776c045ce9041419cf9ba7ef.zip newlib-5962fc1d5c956c68776c045ce9041419cf9ba7ef.tar.gz newlib-5962fc1d5c956c68776c045ce9041419cf9ba7ef.tar.bz2 |
bfd:
* configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
* configure: Regenerate.
config:
* acx.m4 (ACX_PKGVERSION, ACX_BUGURL): Define.
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/acx.m4 | 38 |
2 files changed, 42 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index f0cda7a..250c3ff 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -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 diff --git a/config/acx.m4 b/config/acx.m4 index a897075..73afe8d 100644 --- a/config/acx.m4 +++ b/config/acx.m4 @@ -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) +]) |