mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-ggsn.git
synced 2025-10-23 00:12:08 +00:00
Move all includes from /usr/include/….h to /usr/include/osmocom/gtp/….h to be more consistent with other Osmocom projects, and to not "pollute" the top include directory if we add more header files. Also the new directory structure makes more obvious, which headers are public and which ones aren't. Adjust libgtp.pc.in so both #include <gtp.h> (legacy) and #include <osmocom/gtp/gtp.h> can be used. Related: OS#6373 Change-Id: If7e01c61168819bf7120667344e40c857da5490b
15 lines
374 B
PkgConfig
15 lines
374 B
PkgConfig
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
|
|
Name: OsmoGGSN GTP Library
|
|
Description: C Utility Library
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -lgtp
|
|
|
|
# Add two include paths to support:
|
|
# * #include <osmocom/gtp/gtp.h> (like other Osmocom headers)
|
|
# * #include <gtp.h> (legacy compat)
|
|
Cflags: -I${includedir}/osmocom/gtp/ -I${includedir}/
|