Wireshark-bugs: [Wireshark-bugs] [Bug 8202] New: autogen fails because configure.ac uses obsolet
Date: Sat, 12 Jan 2013 20:15:00 +0000
Bug ID 8202
Summary autogen fails because configure.ac uses obsolete AM_CONFIG_HEADER macro
Classification Unclassified
Product Wireshark
Version 1.8.4
Hardware x86
OS Mac OS X 10.8
Status UNCONFIRMED
Severity Normal
Priority Low
Component Wireshark
Assignee bugzilla-admin@wireshark.org
Reporter hadrielk@yahoo.com

Build Information:

--
autogen.sh fails if you use a recent version of automake, because wireshark's
configure.ac uses the old AM_CONFIG_HEADER macro instead of AC_CONFIG_HEADERS. 
The AM_CONFIG_HEADER macro was removed from automake v1.13 and later.

Changing line 2138 of configure.ac from this:
AM_CONFIG_HEADER(config.h)

to this:
AC_CONFIG_HEADERS(config.h)

fixes it.


You are receiving this mail because:
  • You are watching all bug changes.