Changes between Initial Version and Version 1 of Ticket #35883


Ignore:
Timestamp:
Aug 29, 2012, 10:21:42 AM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Yes this is the usual manifestation of glib 2.32+ incompatibility we've seen in many other ports already, and what you've suggested is basically the way it should be fixed.

The script I usually use to fix these errors did not find anything to fix in pidgin-encryption, because this include is written improperly using "quotation marks" when system headers should be included with <angle brackets> instead.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35883

    • Property Status changed from new to assigned
    • Property Cc rsync@… added
    • Property Summary changed from pidgin-encryption fails building to pidgin-encryption: #error "Only <glib.h> can be included directly."
    • Property Owner changed from macports-tickets@… to ryandesign@…
    • Property Port pidgin-encryption added
  • Ticket #35883 – Description

    initial v1  
    11pidgin-encryption failes building with the message:
    2 "#error "Only <glib.h> can be included directly."
     2{{{
     3#error "Only <glib.h> can be included directly."
     4}}}
    35
    46Manually editing rsa_nss.c and modifiying:
     7{{{
    58- #include "glib/gmain.h" to:
    69+ #include "glib.h"
     10}}}
    711solves the issue.