Navigation


Changeset 1552:449b766ded50 in freeDiameter for include


Ignore:
Timestamp:
Jul 18, 2020, 5:38:11 PM (4 years ago)
Author:
Luke Mewburn <luke@mewburn.net>
Branch:
default
Phase:
public
Message:

extensions: fix dependency checking

Fix extension dependency checking by unhiding "fd_ext_depends".

(I accidentally broke this with the change on 2020-03-30
to hide symbols by default.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/extension.h

    r1493 r1552  
    4747/* Macro that define the entry point of the extension */
    4848#define EXTENSION_ENTRY(_name, _function, _depends...)                                  \
     49__attribute__((visibility("default")))                                                  \
    4950const char *fd_ext_depends[] = { _name , ## _depends , NULL };                          \
    5051static int extension_loaded = 0;                                                        \
Note: See TracChangeset for help on using the changeset viewer.