fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-gprs/+/29100 )
Change subject: configure.ac: do not search for dlopen, it's not used nor needed
......................................................................
configure.ac: do not search for dlopen, it's not used nor needed
Change-Id: Iaf9729156ace5f8dc9134094ab3c0a185c7184d5
---
M configure.ac
1 file changed, 0 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-gprs refs/changes/00/29100/1
diff --git a/configure.ac b/configure.ac
index 15974ee..a3570a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,9 +31,6 @@
PKG_PROG_PKG_CONFIG([0.20])
dnl checks for libraries
-AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
-AC_SUBST(LIBRARY_DL)
-
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0)
dnl checks for header files
--
To view, visit https://gerrit.osmocom.org/c/libosmo-gprs/+/29100
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: Iaf9729156ace5f8dc9134094ab3c0a185c7184d5
Gerrit-Change-Number: 29100
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange
fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-dev/+/29088 )
Change subject: gen_makefile.py: use s#git://#https://# in git clone base URL
......................................................................
gen_makefile.py: use s#git://#https://# in git clone base URL
Unencrypted git:// protocol offers no integrity or authentication,
making it subject to tampering. Use https:// instead.
https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-m…https://blog.readthedocs.com/github-git-protocol-deprecation/
Using https:// is also required for some new repositories (like
libosmo-gprs.git), which are intentionally unavailable over git://.
Change-Id: I503f0e1b5258102d771597f1b5b753f670832fcb
---
M gen_makefile.py
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
osmith: Looks good to me, approved
fixeria: Verified
diff --git a/gen_makefile.py b/gen_makefile.py
index 0e0df10..6459846 100755
--- a/gen_makefile.py
+++ b/gen_makefile.py
@@ -70,8 +70,8 @@
help='''Parent dir for all build trees (default:
directly in the make-dir).''')
-parser.add_argument('-u', '--url', dest='url', default='git://git.osmocom.org',
- help='''git clone base URL. Default is 'git://git.osmocom.org'.
+parser.add_argument('-u', '--url', dest='url', default='https://git.osmocom.org',
+ help='''git clone base URL. Default is 'https://git.osmocom.org'.
e.g. with a config like this in your ~/.ssh/config:
host go
hostname gerrit.osmocom.org
--
To view, visit https://gerrit.osmocom.org/c/osmo-dev/+/29088
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-dev
Gerrit-Branch: master
Gerrit-Change-Id: I503f0e1b5258102d771597f1b5b753f670832fcb
Gerrit-Change-Number: 29088
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: merged