]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/macros.h
Merge branch 'debian/sid' into debian/experimental
[apt.git] / apt-pkg / contrib / macros.h
index d97053553544ae21f04235d0a57dbfc593be709a..b268ce24c456a17d22c90502698bb38fa20ff820 100644 (file)
 
 #if APT_GCC_VERSION >= 0x0400
        #define APT_SENTINEL    __attribute__((sentinel))
+       #define APT_PUBLIC __attribute__ ((visibility ("default")))
+       #define APT_HIDDEN __attribute__ ((visibility ("hidden")))
 #else
        #define APT_SENTINEL
+       #define APT_PUBLIC
+       #define APT_HIDDEN
 #endif
 
 // cold functions are unlikely() to be called
 // Non-ABI-Breaks should only increase RELEASE number.
 // See also buildlib/libversion.mak
 #define APT_PKG_MAJOR 4
-#define APT_PKG_MINOR 12
+#define APT_PKG_MINOR 13
 #define APT_PKG_RELEASE 0
 
 #endif