all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
@ 2014-11-25 16:02 Chris Zheng
  2014-11-26  2:30 ` Glenn Morris
  0 siblings, 1 reply; 5+ messages in thread
From: Chris Zheng @ 2014-11-25 16:02 UTC (permalink / raw)
  To: 19179


With MSYS2/Mingw-w64 combination, compiling the master (HEAD 88871ef)
fails with:
windres -I . -O coff -o emacs.res emacs.rc
C:\msys64\mingw64\bin\windres.exe: emacs.rc:14: syntax error
Makefile:230: recipe for target 'emacs.res' failed
make[2]: *** [emacs.res] Error 1
make[2]: Leaving directory '/home/Kel/repo/emacs/nt'

It seems that `emacs.rc' goes wrong, since the line 14 looks like:
 FILEVERSION ,0,0
but it is expected to be:
 FILEVERSION 25,0,50,0

I think the problem comes from line 1917 in configure.ac, where
`$version' is null.  Although I know little about the configure, I
suspect changing `$version' to `$PACKAGE_VERSION' is OK.  That is, the
below patch.  Am I wrong?  I'm eager to know the solution.  Thank you.

___
	Modified   configure.ac
diff --git a/configure.ac b/configure.ac
index 6b6b1c7..0d12f85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1914,7 +1914,7 @@ if test "${HAVE_W32}" = "yes"; then
     *) EMACS_MANIFEST="emacs-x86.manifest" ;;
   esac
   dnl Construct something of the form "24,4,0,0" with 4 components.
-  comma_version=`echo "$version.0.0" | sed -e 's/\./,/g' -e 's/^\([[^,]]*,[[^,]]*,[[^,]]*,[[^,]]*\).*/\1/'`
+  comma_version=`echo "$PACKAGE_VERSION.0.0" | sed -e 's/\./,/g' -e 's/^\([[^,]]*,[[^,]]*,[[^,]]*,[[^,]]*\).*/\1/'`
 
   comma_space_version=`echo "$comma_version" | sed 's/,/, /g'`
   AC_SUBST(comma_version)





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
  2014-11-25 16:02 bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc Chris Zheng
@ 2014-11-26  2:30 ` Glenn Morris
  2014-11-26  4:02   ` Chris Zheng
  0 siblings, 1 reply; 5+ messages in thread
From: Glenn Morris @ 2014-11-26  2:30 UTC (permalink / raw)
  To: 19179-done


I made hard going of this change. :(





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
  2014-11-26  2:30 ` Glenn Morris
@ 2014-11-26  4:02   ` Chris Zheng
  2014-11-26  4:38     ` Glenn Morris
  0 siblings, 1 reply; 5+ messages in thread
From: Chris Zheng @ 2014-11-26  4:02 UTC (permalink / raw)
  To: rgm; +Cc: 19179-done

From: Glenn Morris <rgm@gnu.org>
Subject: Re: bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
Date: Tue, 25 Nov 2014 21:30:25 -0500

> 
> I made hard going of this change. :(
> 
OK.  I known the problem is in my side.  Can you provide some hints
for solving the problem?  I search the `configure' file and find that
at line 18209 it has:
version=$PACKAGE_VERSION
so I want to use `$PACKAGE_VERSION' instead of `$version'.  Is is
expected to have a `version=25.0.50' line before `comma_version' is
calculated?  I have searched the list but no luck.

Thank you for your time.






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
  2014-11-26  4:02   ` Chris Zheng
@ 2014-11-26  4:38     ` Glenn Morris
  2014-11-26  7:01       ` Chris Zheng
  0 siblings, 1 reply; 5+ messages in thread
From: Glenn Morris @ 2014-11-26  4:38 UTC (permalink / raw)
  To: Chris Zheng; +Cc: 19179-done


No, it was wrong, I changed it along the lines you said.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
  2014-11-26  4:38     ` Glenn Morris
@ 2014-11-26  7:01       ` Chris Zheng
  0 siblings, 0 replies; 5+ messages in thread
From: Chris Zheng @ 2014-11-26  7:01 UTC (permalink / raw)
  To: rgm; +Cc: 19179-done

From: Glenn Morris <rgm@gnu.org>
Subject: Re: bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc
Date: Tue, 25 Nov 2014 23:38:03 -0500

> 
> No, it was wrong, I changed it along the lines you said.

Oh, it is fixed.  Thanks.





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-11-26  7:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-25 16:02 bug#19179: 25.0.50; Build failure with wrong version in nt/emacs.rc Chris Zheng
2014-11-26  2:30 ` Glenn Morris
2014-11-26  4:02   ` Chris Zheng
2014-11-26  4:38     ` Glenn Morris
2014-11-26  7:01       ` Chris Zheng

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.