diff options
author | DJ Delorie <dj@redhat.com> | 2001-08-03 16:27:22 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-08-03 16:27:22 +0000 |
commit | c918cb968c5298efb58889698424de2125b7ea32 (patch) | |
tree | fbc335dd8accef5d63cfe6345b3a742965abaaf2 /binutils | |
parent | 62efb34674db16981c9f9e04ddc08964cf8fe30f (diff) | |
download | gdb-c918cb968c5298efb58889698424de2125b7ea32.zip gdb-c918cb968c5298efb58889698424de2125b7ea32.tar.gz gdb-c918cb968c5298efb58889698424de2125b7ea32.tar.bz2 |
* configure.in: Added --with-windres option.
* configure: Regenerated.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rwxr-xr-x | binutils/configure | 3 | ||||
-rw-r--r-- | binutils/configure.in | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7a1b6e9..38630f9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2001-08-03 Tom Walsh <tom@cyberiansoftware.com> + + * configure.in: Added --with-windres option. + * configure: Regenerated. + 2001-07-11 Stephane Carrez <Stephane.Carrez@worldnet.fr> * doc/binutils.texi: Use @command{name} for commands; diff --git a/binutils/configure b/binutils/configure index bb04e3c..c0651f8 100755 --- a/binutils/configure +++ b/binutils/configure @@ -5480,6 +5480,9 @@ do fi done +if test "${with_windres+set}" = set; then + BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)' +fi diff --git a/binutils/configure.in b/binutils/configure.in index 303a7da..00f3888 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -266,6 +266,10 @@ changequote([,])dnl fi done +if test "${with_windres+set}" = set; then + BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)' +fi + AC_SUBST(NLMCONV_DEFS) AC_SUBST(BUILD_NLMCONV) AC_SUBST(BUILD_SRCONV) |