pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/38625?usp=email )
Change subject: sigtran: xua_msg.h,msg_types.h: Make headers private ......................................................................
sigtran: xua_msg.h,msg_types.h: Make headers private
Those headers are only used internally in libosmo-sigtran, since those objects have no real use outside of it. Mark the headers as no-install, which implicitly makes them private since they won't be accessible to be used as they are not installed.
This decreases the amount of public APIs the libosmo-sigtran has.
Change-Id: Icd23bf9c9364c33ea2ba709e3ef4439813a168f4 --- M include/osmocom/sigtran/Makefile.am 1 file changed, 12 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/25/38625/1
diff --git a/include/osmocom/sigtran/Makefile.am b/include/osmocom/sigtran/Makefile.am index 8d90b0b..19f9dba 100644 --- a/include/osmocom/sigtran/Makefile.am +++ b/include/osmocom/sigtran/Makefile.am @@ -1,5 +1,15 @@ -sigtran_HEADERS = xua_types.h xua_msg.h sccp_sap.h \ - sigtran_sap.h sccp_helpers.h mtp_sap.h osmo_ss7.h +noinst_HEADERS = \ + xua_msg.h \ + xua_types.h \ + $(NULL) + +sigtran_HEADERS = \ + mtp_sap.h \ + osmo_ss7.h \ + sccp_helpers.h \ + sccp_sap.h \ + sigtran_sap.h \ + $(NULL)
sigtrandir = $(includedir)/osmocom/sigtran