Changes between Initial Version and Version 1 of Ticket #37794


Ignore:
Timestamp:
Jan 27, 2013, 6:20:47 PM (11 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Duplicate of #37428. This was fixed in December. Please run "sudo port selfupdate" to receive this and other fixes.

Yes, many ports need to be patched to be compatible with automake 1.13 and up. Yes, many ports have patchfiles with the name patch-automake-1.13.diff to do this. But each port needs a different patch. The patchfiles are only named the same to make it clear what the patch is for.

Please remember to use WikiFormatting when writing in Trac, and to fill in the Port and Cc fields properly. See the ticket filing instructions linked prominently at the top of the New Ticket page.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37794

    • Property Status changed from new to closed
    • Property Cc devans@… ryandesign@… added
    • Property Resolution changed from to duplicate
    • Property Port gnome-keyring added
  • Ticket #37794 – Description

    initial v1  
    11I was trying to install meld and it depends on gnome-keyring. Which failed to compile, looking at the log file I saw:
    22
     3{{{
    34:info:configure configure.in:4: error: 'AM_CONFIG_HEADER': this macro is obsolete.
    45:info:configure     You should use the 'AC_CONFIG_HEADERS' macro instead.
    56:info:configure /opt/local/share/aclocal-1.13/obsolete-err.m4:12: AM_CONFIG_HEADER is expanded from...
     7}}}
    68
    79So I manually changed gnome-keyring's configure.in file to use AC_CONFIG_HEADERS, this allowed the compile to succeed.
    810Also, looking around I find quite a few patches using this file:
    911
     12{{{
    1013$ cat  ./sources/rsync.macports.org/release/tarballs/ports/gnome/gnome-mime-data/files/patch-automake-1.13.diff
     14}}}
    1115
     16{{{
    1217$ cat ./sources/rsync.macports.org/release/tarballs/ports/gnome/gnome-mime-data/files/patch-automake-1.13.diff
    1318--- configure.in.orig   2007-04-03 12:34:00.000000000 -0500
     
    2126 AM_MAINTAINER_MODE
    2227 AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")
    23  
     28}}}
    2429
    2530It would seem this same patch is needed for gnome-keyring.