lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
September
August
July
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
June 2025
----- 2025 -----
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
1 participants
751 discussions
Start a n
N
ew thread
[XS] Change in libgtpnl[master]: include/libgtpnl/Makefile: format pkginclude_HEADERS
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libgtpnl/+/40510?usp=email
) Change subject: include/libgtpnl/Makefile: format pkginclude_HEADERS ...................................................................... include/libgtpnl/Makefile: format pkginclude_HEADERS Make it diff-friendly by having one file per line. Change-Id: Ib4add6a8d079002ad03a7446c4466c3dd652eaea --- M include/libgtpnl/Makefile.am 1 file changed, 4 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/libgtpnl refs/changes/10/40510/1 diff --git a/include/libgtpnl/Makefile.am b/include/libgtpnl/Makefile.am index b12e9a3..90b0a2e 100644 --- a/include/libgtpnl/Makefile.am +++ b/include/libgtpnl/Makefile.am @@ -1 +1,4 @@ -pkginclude_HEADERS = gtp.h gtpnl.h +pkginclude_HEADERS = \ + gtp.h \ + gtpnl.h \ + $(NULL) -- To view, visit
https://gerrit.osmocom.org/c/libgtpnl/+/40510?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libgtpnl Gerrit-Branch: master Gerrit-Change-Id: Ib4add6a8d079002ad03a7446c4466c3dd652eaea Gerrit-Change-Number: 40510 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libgtpnl[master]: Generate a version.h file
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libgtpnl/+/40511?usp=email
) Change subject: Generate a version.h file ...................................................................... Generate a version.h file Related: OS#6626 Change-Id: I7761491ae767f1f21b2a3bba62d9ecb8a7d1226b --- M .gitignore M include/libgtpnl/Makefile.am A include/libgtpnl/version.h.tpl 3 files changed, 28 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libgtpnl refs/changes/11/40511/1 diff --git a/.gitignore b/.gitignore index 56eefa6..c5757f4 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ tools/gtp-tunnel tests/qemu/_* + +include/libgtpnl/version.h diff --git a/include/libgtpnl/Makefile.am b/include/libgtpnl/Makefile.am index 90b0a2e..f17f9d1 100644 --- a/include/libgtpnl/Makefile.am +++ b/include/libgtpnl/Makefile.am @@ -1,4 +1,14 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + pkginclude_HEADERS = \ gtp.h \ gtpnl.h \ + version.h \ $(NULL) diff --git a/include/libgtpnl/version.h.tpl b/include/libgtpnl/version.h.tpl new file mode 100644 index 0000000..0a5a209 --- /dev/null +++ b/include/libgtpnl/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBGTPNL_VERSION {{VERSION}} +#define LIBGTPNL_VERSION_STR "{{VERSION}}" + +#define LIBGTPNL_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBGTPNL_VERSION_MINOR {{VERSION_MINOR}} +#define LIBGTPNL_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBGTPNL_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBGTPNL_VERSION_MAJOR > (major) || \ + (LIBGTPNL_VERSION_MAJOR == (major) && \ + LIBGTPNL_VERSION_MINOR > (minor)) || \ + (LIBGTPNL_VERSION_MAJOR == (major) && \ + LIBGTPNL_VERSION_MINOR == (minor) && \ + LIBGTPNL_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libgtpnl/+/40511?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libgtpnl Gerrit-Branch: master Gerrit-Change-Id: I7761491ae767f1f21b2a3bba62d9ecb8a7d1226b Gerrit-Change-Number: 40511 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libsmpp34[master]: Generate a version.h file
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libsmpp34/+/40509?usp=email
) Change subject: Generate a version.h file ...................................................................... Generate a version.h file Give the file a smpp34_ prefix as it ends up in /usr/include. Related: OS#6626 Change-Id: I03ba56c80d83fda5824da247a942e2e33f48580e --- M src/Makefile.am A src/smpp34_version.h.tpl 2 files changed, 27 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/libsmpp34 refs/changes/09/40509/1 diff --git a/src/Makefile.am b/src/Makefile.am index e594dd9..7feb2a7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -18,11 +18,21 @@ $(LIBRARY_SOURCE_DIR)/smpp34_params.c \ $(LIBRARY_SOURCE_DIR)/smpp34_params.h +smpp34_version.h: $(LIBRARY_SOURCE_DIR)/smpp34_version.h.tpl + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + include_HEADERS = \ $(LIBRARY_SOURCE_DIR)/smpp34.h \ $(LIBRARY_SOURCE_DIR)/smpp34_heap.h \ $(LIBRARY_SOURCE_DIR)/smpp34_structs.h \ - $(LIBRARY_SOURCE_DIR)/smpp34_params.h + $(LIBRARY_SOURCE_DIR)/smpp34_params.h \ + smpp34_version.h \ + $(NULL) libsmpp34_la_CFLAGS = @CFLAGS@ -Wall libsmpp34_la_CFLAGS += -D_REENTRANT -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS diff --git a/src/smpp34_version.h.tpl b/src/smpp34_version.h.tpl new file mode 100644 index 0000000..e9bc8cd --- /dev/null +++ b/src/smpp34_version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBSMPP34_VERSION {{VERSION}} +#define LIBSMPP34_VERSION_STR "{{VERSION}}" + +#define LIBSMPP34_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBSMPP34_VERSION_MINOR {{VERSION_MINOR}} +#define LIBSMPP34_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBSMPP34_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBSMPP34_VERSION_MAJOR > (major) || \ + (LIBSMPP34_VERSION_MAJOR == (major) && \ + LIBSMPP34_VERSION_MINOR > (minor)) || \ + (LIBSMPP34_VERSION_MAJOR == (major) && \ + LIBSMPP34_VERSION_MINOR == (minor) && \ + LIBSMPP34_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libsmpp34/+/40509?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libsmpp34 Gerrit-Branch: master Gerrit-Change-Id: I03ba56c80d83fda5824da247a942e2e33f48580e Gerrit-Change-Number: 40509 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[M] Change in libosmo-gprs[master]: Generate version.h files
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-gprs/+/40508?usp=email
) Change subject: Generate version.h files ...................................................................... Generate version.h files Related: OS#6626 Change-Id: Icf0319d4b7c27f80a696cb951aa40e2add64749b --- M .gitignore M include/osmocom/csn1/Makefile.am A include/osmocom/csn1/version.h.tpl M include/osmocom/gprs/gmm/Makefile.am A include/osmocom/gprs/gmm/version.h.tpl M include/osmocom/gprs/llc/Makefile.am A include/osmocom/gprs/llc/version.h.tpl M include/osmocom/gprs/rlcmac/Makefile.am A include/osmocom/gprs/rlcmac/version.h.tpl M include/osmocom/gprs/sm/Makefile.am A include/osmocom/gprs/sm/version.h.tpl M include/osmocom/gprs/sndcp/Makefile.am A include/osmocom/gprs/sndcp/version.h.tpl 13 files changed, 155 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-gprs refs/changes/08/40508/1 diff --git a/.gitignore b/.gitignore index 020b541..93b84ab 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,4 @@ /deps contrib/libosmo-gprs.spec +include/osmocom/**/version.h diff --git a/include/osmocom/csn1/Makefile.am b/include/osmocom/csn1/Makefile.am index d16b724..1b981b1 100644 --- a/include/osmocom/csn1/Makefile.am +++ b/include/osmocom/csn1/Makefile.am @@ -1,6 +1,17 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + + csn1_HEADERS = \ wireshark_compat.h \ csn1.h \ + version.h \ $(NULL) csn1dir = $(includedir)/osmocom/csn1 diff --git a/include/osmocom/csn1/version.h.tpl b/include/osmocom/csn1/version.h.tpl new file mode 100644 index 0000000..2f90851 --- /dev/null +++ b/include/osmocom/csn1/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_CSN1_VERSION {{VERSION}} +#define LIBOSMO_CSN1_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_CSN1_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_CSN1_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_CSN1_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_CSN1_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_CSN1_VERSION_MAJOR > (major) || \ + (LIBOSMO_CSN1_VERSION_MAJOR == (major) && \ + LIBOSMO_CSN1_VERSION_MINOR > (minor)) || \ + (LIBOSMO_CSN1_VERSION_MAJOR == (major) && \ + LIBOSMO_CSN1_VERSION_MINOR == (minor) && \ + LIBOSMO_CSN1_VERSION_PATCH >= (patch))) diff --git a/include/osmocom/gprs/gmm/Makefile.am b/include/osmocom/gprs/gmm/Makefile.am index 2adfed1..efa45c3 100644 --- a/include/osmocom/gprs/gmm/Makefile.am +++ b/include/osmocom/gprs/gmm/Makefile.am @@ -1,3 +1,11 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ noinst_HEADERS = \ gmm_ms_fsm.h \ @@ -8,6 +16,7 @@ gmm_HEADERS = \ gmm.h \ gmm_prim.h \ + version.h \ $(NULL) gmmdir = $(includedir)/osmocom/gprs/gmm diff --git a/include/osmocom/gprs/gmm/version.h.tpl b/include/osmocom/gprs/gmm/version.h.tpl new file mode 100644 index 0000000..f6135ff --- /dev/null +++ b/include/osmocom/gprs/gmm/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_GPRS_GMM_VERSION {{VERSION}} +#define LIBOSMO_GPRS_GMM_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_GPRS_GMM_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_GPRS_GMM_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_GPRS_GMM_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_GPRS_GMM_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_GPRS_GMM_VERSION_MAJOR > (major) || \ + (LIBOSMO_GPRS_GMM_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_GMM_VERSION_MINOR > (minor)) || \ + (LIBOSMO_GPRS_GMM_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_GMM_VERSION_MINOR == (minor) && \ + LIBOSMO_GPRS_GMM_VERSION_PATCH >= (patch))) diff --git a/include/osmocom/gprs/llc/Makefile.am b/include/osmocom/gprs/llc/Makefile.am index df56a08..97e1aa2 100644 --- a/include/osmocom/gprs/llc/Makefile.am +++ b/include/osmocom/gprs/llc/Makefile.am @@ -1,3 +1,12 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + noinst_HEADERS = \ llc_private.h \ $(NULL) @@ -5,6 +14,7 @@ llc_HEADERS = \ llc.h \ llc_prim.h \ + version.h \ $(NULL) llcdir = $(includedir)/osmocom/gprs/llc diff --git a/include/osmocom/gprs/llc/version.h.tpl b/include/osmocom/gprs/llc/version.h.tpl new file mode 100644 index 0000000..dcae17d --- /dev/null +++ b/include/osmocom/gprs/llc/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_GPRS_LLC_VERSION {{VERSION}} +#define LIBOSMO_GPRS_LLC_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_GPRS_LLC_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_GPRS_LLC_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_GPRS_LLC_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_GPRS_LLC_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_GPRS_LLC_VERSION_MAJOR > (major) || \ + (LIBOSMO_GPRS_LLC_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_LLC_VERSION_MINOR > (minor)) || \ + (LIBOSMO_GPRS_LLC_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_LLC_VERSION_MINOR == (minor) && \ + LIBOSMO_GPRS_LLC_VERSION_PATCH >= (patch))) diff --git a/include/osmocom/gprs/rlcmac/Makefile.am b/include/osmocom/gprs/rlcmac/Makefile.am index a117a34..ecc5024 100644 --- a/include/osmocom/gprs/rlcmac/Makefile.am +++ b/include/osmocom/gprs/rlcmac/Makefile.am @@ -1,3 +1,12 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + noinst_HEADERS = \ codel.h \ coding_scheme.h \ @@ -27,6 +36,7 @@ rlcmac.h \ rlcmac_prim.h \ types.h \ + version.h \ $(NULL) rlcmacdir = $(includedir)/osmocom/gprs/rlcmac diff --git a/include/osmocom/gprs/rlcmac/version.h.tpl b/include/osmocom/gprs/rlcmac/version.h.tpl new file mode 100644 index 0000000..16776bd --- /dev/null +++ b/include/osmocom/gprs/rlcmac/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_GPRS_RLCMAC_VERSION {{VERSION}} +#define LIBOSMO_GPRS_RLCMAC_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_GPRS_RLCMAC_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_GPRS_RLCMAC_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_GPRS_RLCMAC_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_GPRS_RLCMAC_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_GPRS_RLCMAC_VERSION_MAJOR > (major) || \ + (LIBOSMO_GPRS_RLCMAC_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_RLCMAC_VERSION_MINOR > (minor)) || \ + (LIBOSMO_GPRS_RLCMAC_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_RLCMAC_VERSION_MINOR == (minor) && \ + LIBOSMO_GPRS_RLCMAC_VERSION_PATCH >= (patch))) diff --git a/include/osmocom/gprs/sm/Makefile.am b/include/osmocom/gprs/sm/Makefile.am index f6bede4..5e08915 100644 --- a/include/osmocom/gprs/sm/Makefile.am +++ b/include/osmocom/gprs/sm/Makefile.am @@ -1,3 +1,11 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ noinst_HEADERS = \ sm_ms_fsm.h \ @@ -9,6 +17,7 @@ sm.h \ sm_prim.h \ sm_qos.h \ + version.h \ $(NULL) smdir = $(includedir)/osmocom/gprs/sm diff --git a/include/osmocom/gprs/sm/version.h.tpl b/include/osmocom/gprs/sm/version.h.tpl new file mode 100644 index 0000000..ea4ad50 --- /dev/null +++ b/include/osmocom/gprs/sm/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_GPRS_SM_VERSION {{VERSION}} +#define LIBOSMO_GPRS_SM_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_GPRS_SM_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_GPRS_SM_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_GPRS_SM_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_GPRS_SM_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_GPRS_SM_VERSION_MAJOR > (major) || \ + (LIBOSMO_GPRS_SM_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_SM_VERSION_MINOR > (minor)) || \ + (LIBOSMO_GPRS_SM_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_SM_VERSION_MINOR == (minor) && \ + LIBOSMO_GPRS_SM_VERSION_PATCH >= (patch))) diff --git a/include/osmocom/gprs/sndcp/Makefile.am b/include/osmocom/gprs/sndcp/Makefile.am index 0546475..6b5ef99 100644 --- a/include/osmocom/gprs/sndcp/Makefile.am +++ b/include/osmocom/gprs/sndcp/Makefile.am @@ -1,3 +1,11 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ noinst_HEADERS = \ comp.h \ @@ -13,6 +21,7 @@ sndcp_HEADERS = \ sndcp.h \ sndcp_prim.h \ + version.h \ $(NULL) sndcpdir = $(includedir)/osmocom/gprs/sndcp diff --git a/include/osmocom/gprs/sndcp/version.h.tpl b/include/osmocom/gprs/sndcp/version.h.tpl new file mode 100644 index 0000000..16b2ca5 --- /dev/null +++ b/include/osmocom/gprs/sndcp/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_GPRS_SNDCP_VERSION {{VERSION}} +#define LIBOSMO_GPRS_SNDCP_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_GPRS_SNDCP_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_GPRS_SNDCP_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_GPRS_SNDCP_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_GPRS_SNDCP_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_GPRS_SNDCP_VERSION_MAJOR > (major) || \ + (LIBOSMO_GPRS_SNDCP_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_SNDCP_VERSION_MINOR > (minor)) || \ + (LIBOSMO_GPRS_SNDCP_VERSION_MAJOR == (major) && \ + LIBOSMO_GPRS_SNDCP_VERSION_MINOR == (minor) && \ + LIBOSMO_GPRS_SNDCP_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libosmo-gprs/+/40508?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-gprs Gerrit-Branch: master Gerrit-Change-Id: Icf0319d4b7c27f80a696cb951aa40e2add64749b Gerrit-Change-Number: 40508 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libosmo-pfcp[master]: Generate a version.h file
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-pfcp/+/40507?usp=email
) Change subject: Generate a version.h file ...................................................................... Generate a version.h file Related: OS#6626 Change-Id: I5f1e568d5ef991371aa29188e54de86b4b940472 --- M .gitignore M include/osmocom/pfcp/Makefile.am A include/osmocom/pfcp/version.h.tpl 3 files changed, 27 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-pfcp refs/changes/07/40507/1 diff --git a/.gitignore b/.gitignore index 56bd8e6..9879e21 100644 --- a/.gitignore +++ b/.gitignore @@ -83,3 +83,4 @@ doc/manuals/build contrib/libosmo-pfcp.spec +include/osmocom/pfcp/version.h diff --git a/include/osmocom/pfcp/Makefile.am b/include/osmocom/pfcp/Makefile.am index 2693be5..e0305f4 100644 --- a/include/osmocom/pfcp/Makefile.am +++ b/include/osmocom/pfcp/Makefile.am @@ -1,3 +1,12 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + noinst_HEADERS = \ pfcp_cp_peer_private.h \ $(NULL) @@ -10,6 +19,7 @@ pfcp_proto.h \ pfcp_strs.h \ pfcp_cp_peer.h \ + version.h \ $(NULL) pfcpdir = $(includedir)/osmocom/pfcp diff --git a/include/osmocom/pfcp/version.h.tpl b/include/osmocom/pfcp/version.h.tpl new file mode 100644 index 0000000..1a7de1b --- /dev/null +++ b/include/osmocom/pfcp/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_PFCP_VERSION {{VERSION}} +#define LIBOSMO_PFCP_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_PFCP_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_PFCP_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_PFCP_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_PFCP_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_PFCP_VERSION_MAJOR > (major) || \ + (LIBOSMO_PFCP_VERSION_MAJOR == (major) && \ + LIBOSMO_PFCP_VERSION_MINOR > (minor)) || \ + (LIBOSMO_PFCP_VERSION_MAJOR == (major) && \ + LIBOSMO_PFCP_VERSION_MINOR == (minor) && \ + LIBOSMO_PFCP_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libosmo-pfcp/+/40507?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-pfcp Gerrit-Branch: master Gerrit-Change-Id: I5f1e568d5ef991371aa29188e54de86b4b940472 Gerrit-Change-Number: 40507 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libosmo-netif[master]: Generate a version.h file
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-netif/+/40506?usp=email
) Change subject: Generate a version.h file ...................................................................... Generate a version.h file Related: OS#6626 Change-Id: I764d2dce1305441b353d4f9315b57cbaeb8b873e --- M .gitignore M include/osmocom/netif/Makefile.am A include/osmocom/netif/version.h.tpl 3 files changed, 27 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/06/40506/1 diff --git a/.gitignore b/.gitignore index fd14f41..74848f5 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,4 @@ amr_test contrib/libosmo-netif.spec +include/osmocom/netif/version.h diff --git a/include/osmocom/netif/Makefile.am b/include/osmocom/netif/Makefile.am index 5c10d71..feb6335 100644 --- a/include/osmocom/netif/Makefile.am +++ b/include/osmocom/netif/Makefile.am @@ -1,3 +1,12 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + noinst_HEADERS = \ stream_private.h \ $(NULL) @@ -13,6 +22,7 @@ rs232.h \ rtp.h \ stream.h \ + version.h \ $(NULL) if ENABLE_LIBSCTP diff --git a/include/osmocom/netif/version.h.tpl b/include/osmocom/netif/version.h.tpl new file mode 100644 index 0000000..289ecbd --- /dev/null +++ b/include/osmocom/netif/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_NETIF_VERSION {{VERSION}} +#define LIBOSMO_NETIF_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_NETIF_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_NETIF_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_NETIF_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_NETIF_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_NETIF_VERSION_MAJOR > (major) || \ + (LIBOSMO_NETIF_VERSION_MAJOR == (major) && \ + LIBOSMO_NETIF_VERSION_MINOR > (minor)) || \ + (LIBOSMO_NETIF_VERSION_MAJOR == (major) && \ + LIBOSMO_NETIF_VERSION_MINOR == (minor) && \ + LIBOSMO_NETIF_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libosmo-netif/+/40506?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-netif Gerrit-Branch: master Gerrit-Change-Id: I764d2dce1305441b353d4f9315b57cbaeb8b873e Gerrit-Change-Number: 40506 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libosmo-netif[master]: include/osmocom/netif/Makefile: format osmonetif_HEADERS
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-netif/+/40505?usp=email
) Change subject: include/osmocom/netif/Makefile: format osmonetif_HEADERS ...................................................................... include/osmocom/netif/Makefile: format osmonetif_HEADERS Format osmonetif_HEADERS like similar variables in other Osmocom projects. Change-Id: I6823188601606f1bff9a5787e6a8f2b6971e0ed2 --- M include/osmocom/netif/Makefile.am 1 file changed, 12 insertions(+), 11 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/05/40505/1 diff --git a/include/osmocom/netif/Makefile.am b/include/osmocom/netif/Makefile.am index d518edb..5c10d71 100644 --- a/include/osmocom/netif/Makefile.am +++ b/include/osmocom/netif/Makefile.am @@ -2,17 +2,18 @@ stream_private.h \ $(NULL) -osmonetif_HEADERS = amr.h \ - datagram.h \ - ipa.h \ - ipa_unit.h \ - jibuf.h \ - osmux.h \ - prim.h \ - rs232.h \ - rtp.h \ - stream.h \ - $(NULL) +osmonetif_HEADERS = \ + amr.h \ + datagram.h \ + ipa.h \ + ipa_unit.h \ + jibuf.h \ + osmux.h \ + prim.h \ + rs232.h \ + rtp.h \ + stream.h \ + $(NULL) if ENABLE_LIBSCTP osmonetif_HEADERS += sctp.h -- To view, visit
https://gerrit.osmocom.org/c/libosmo-netif/+/40505?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-netif Gerrit-Branch: master Gerrit-Change-Id: I6823188601606f1bff9a5787e6a8f2b6971e0ed2 Gerrit-Change-Number: 40505 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libosmo-sigtran[master]: Generate a version.h file
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-sigtran/+/40504?usp=email
) Change subject: Generate a version.h file ...................................................................... Generate a version.h file Related: OS#6626 Change-Id: I7b010b3815845fe49d105bc8bf3295707104923d --- M .gitignore M include/osmocom/sigtran/Makefile.am A include/osmocom/sigtran/version.h.tpl 3 files changed, 27 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/04/40504/1 diff --git a/.gitignore b/.gitignore index 67685b4..99cb052 100644 --- a/.gitignore +++ b/.gitignore @@ -87,3 +87,4 @@ doc/sigtran contrib/libosmo-sccp.spec +include/osmocom/sigtran/version.h diff --git a/include/osmocom/sigtran/Makefile.am b/include/osmocom/sigtran/Makefile.am index 69895bc..5be57ec 100644 --- a/include/osmocom/sigtran/Makefile.am +++ b/include/osmocom/sigtran/Makefile.am @@ -1,3 +1,12 @@ +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + sigtran_HEADERS = \ mtp_sap.h \ osmo_ss7.h \ @@ -5,6 +14,7 @@ sccp_sap.h \ sigtran_sap.h \ xua_msg.h \ + version.h \ $(NULL) sigtrandir = $(includedir)/osmocom/sigtran diff --git a/include/osmocom/sigtran/version.h.tpl b/include/osmocom/sigtran/version.h.tpl new file mode 100644 index 0000000..34b9cb1 --- /dev/null +++ b/include/osmocom/sigtran/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_SIGTRAN_VERSION {{VERSION}} +#define LIBOSMO_SIGTRAN_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_SIGTRAN_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_SIGTRAN_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_SIGTRAN_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_SIGTRAN_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_SIGTRAN_VERSION_MAJOR > (major) || \ + (LIBOSMO_SIGTRAN_VERSION_MAJOR == (major) && \ + LIBOSMO_SIGTRAN_VERSION_MINOR > (minor)) || \ + (LIBOSMO_SIGTRAN_VERSION_MAJOR == (major) && \ + LIBOSMO_SIGTRAN_VERSION_MINOR == (minor) && \ + LIBOSMO_SIGTRAN_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libosmo-sigtran/+/40504?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-sigtran Gerrit-Branch: master Gerrit-Change-Id: I7b010b3815845fe49d105bc8bf3295707104923d Gerrit-Change-Number: 40504 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libosmo-abis[master]: Generate a version.h file
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-abis/+/40503?usp=email
) Change subject: Generate a version.h file ...................................................................... Generate a version.h file Related: OS#6626 Change-Id: I7fc28a976c922caa29f4e5b3832cdd743c939fa3 --- M .gitignore M include/Makefile.am A include/osmocom/abis/version.h.tpl 3 files changed, 27 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/03/40503/1 diff --git a/.gitignore b/.gitignore index 80e6834..ee4b9f8 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ *.sw? contrib/libosmo-abis.spec +include/osmocom/abis/version.h diff --git a/include/Makefile.am b/include/Makefile.am index 0e53031..c1ae8dd 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,5 +1,14 @@ noinst_HEADERS=mISDNif.h internal.h +osmocom/abis/version.h: osmocom/abis/version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + nobase_include_HEADERS = \ osmocom/abis/abis.h \ osmocom/abis/e1_input.h \ @@ -10,6 +19,7 @@ osmocom/abis/subchan_demux.h \ osmocom/abis/trau_frame.h \ osmocom/abis/unixsocket_proto.h \ + osmocom/abis/version.h \ osmocom/trau/csd_ra2.h \ osmocom/trau/csd_raa_prime.h \ osmocom/trau/trau_frame.h \ diff --git a/include/osmocom/abis/version.h.tpl b/include/osmocom/abis/version.h.tpl new file mode 100644 index 0000000..87f0ccf --- /dev/null +++ b/include/osmocom/abis/version.h.tpl @@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_ABIS_VERSION {{VERSION}} +#define LIBOSMO_ABIS_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_ABIS_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_ABIS_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_ABIS_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_ABIS_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_ABIS_VERSION_MAJOR > (major) || \ + (LIBOSMO_ABIS_VERSION_MAJOR == (major) && \ + LIBOSMO_ABIS_VERSION_MINOR > (minor)) || \ + (LIBOSMO_ABIS_VERSION_MAJOR == (major) && \ + LIBOSMO_ABIS_VERSION_MINOR == (minor) && \ + LIBOSMO_ABIS_VERSION_PATCH >= (patch))) -- To view, visit
https://gerrit.osmocom.org/c/libosmo-abis/+/40503?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-abis Gerrit-Branch: master Gerrit-Change-Id: I7fc28a976c922caa29f4e5b3832cdd743c939fa3 Gerrit-Change-Number: 40503 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
[S] Change in libosmo-abis[master]: include/Makefile: format nobase_include_HEADERS
by osmith
osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-abis/+/40502?usp=email
) Change subject: include/Makefile: format nobase_include_HEADERS ...................................................................... include/Makefile: format nobase_include_HEADERS Make nobase_include_HEADERS diff friendly by having one file in one line. Change-Id: Ib2af631dd0f27c79098be94082fa7bfb52350b09 --- M include/Makefile.am 1 file changed, 17 insertions(+), 10 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/02/40502/1 diff --git a/include/Makefile.am b/include/Makefile.am index d555e62..0e53031 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,15 +1,22 @@ noinst_HEADERS=mISDNif.h internal.h -nobase_include_HEADERS = osmocom/abis/ipa.h osmocom/abis/trau_frame.h \ - osmocom/abis/ipaccess.h osmocom/abis/abis.h \ - osmocom/abis/subchan_demux.h osmocom/abis/e1_input.h \ - osmocom/abis/lapd.h osmocom/abis/lapd_pcap.h osmocom/abis/unixsocket_proto.h \ - osmocom/trau/csd_ra2.h \ - osmocom/trau/csd_raa_prime.h \ - osmocom/trau/trau_frame.h \ - osmocom/trau/trau_sync.h \ - osmocom/trau/trau_pcu_ericsson.h \ - osmocom/trau/trau_rtp.h +nobase_include_HEADERS = \ + osmocom/abis/abis.h \ + osmocom/abis/e1_input.h \ + osmocom/abis/ipa.h \ + osmocom/abis/ipaccess.h \ + osmocom/abis/lapd.h \ + osmocom/abis/lapd_pcap.h \ + osmocom/abis/subchan_demux.h \ + osmocom/abis/trau_frame.h \ + osmocom/abis/unixsocket_proto.h \ + osmocom/trau/csd_ra2.h \ + osmocom/trau/csd_raa_prime.h \ + osmocom/trau/trau_frame.h \ + osmocom/trau/trau_pcu_ericsson.h \ + osmocom/trau/trau_rtp.h \ + osmocom/trau/trau_sync.h \ + $(NULL) if ENABLE_ORTP nobase_include_HEADERS += osmocom/trau/osmo_ortp.h -- To view, visit
https://gerrit.osmocom.org/c/libosmo-abis/+/40502?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: libosmo-abis Gerrit-Branch: master Gerrit-Change-Id: Ib2af631dd0f27c79098be94082fa7bfb52350b09 Gerrit-Change-Number: 40502 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de>
2 months, 2 weeks
1
0
0
0
← Newer
1
...
23
24
25
26
27
28
29
...
76
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Results per page:
10
25
50
100
200