* automake.in (QUEUE_MESSAGE, QUEUE_CONF_FILE, QUEUE_LOCATION)
(QUEUE_STRING): Define using one `use constant' each; as perl
5.6.0 (on MSYS) does not understand `use constant { ... }'.
* THANKS: Update.
Report by Peter Rosin.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Peter Mattis petm@scam.XCF.Berkeley.EDU
Peter Muir iyhi@yahoo.com
Peter O'Gorman peter@pogma.com
+Peter Rosin peda@lysator.liu.se
Peter Seiderer seiderer123@ciselant.de
Petter Reinholdtsen pere@hungry.com
Phil Edwards phil@jaj.com
use constant INTERNAL => new Automake::Location;
# Serialization keys for message queues.
-use constant {
- QUEUE_MESSAGE => "msg",
- QUEUE_CONF_FILE => "conf file",
- QUEUE_LOCATION => "location",
- QUEUE_STRING => "string"
-};
+use constant QUEUE_MESSAGE => "msg";
+use constant QUEUE_CONF_FILE => "conf file";
+use constant QUEUE_LOCATION => "location";
+use constant QUEUE_STRING => "string";
\f
## ---------------------------------- ##