From: Uwe Hermann Date: Wed, 9 Jan 2019 01:51:44 +0000 (+0100) Subject: Use https instead of http when referring to sigrok.org. X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=6abc32683a8458602d2646da4f959f5e9e1f23f4;p=libsigrokflow.git Use https instead of http when referring to sigrok.org. --- diff --git a/configure.ac b/configure.ac index e637b68..80dba11 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ([2.63]) AC_INIT([libsigrokflow], [0.1.0], [sigrok-devel@lists.sourceforge.net], - [libsigrokflow], [http://www.sigrok.org]) + [libsigrokflow], [https://www.sigrok.org]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([autostuff]) AC_CONFIG_HEADERS([config.h]) diff --git a/libsigrokflow.pc.in b/libsigrokflow.pc.in index b30a458..370fc2d 100644 --- a/libsigrokflow.pc.in +++ b/libsigrokflow.pc.in @@ -5,7 +5,7 @@ includedir=@includedir@ Name: libsigrokflow Description: sigrok flow graph library -URL: http://www.sigrok.org +URL: https://www.sigrok.org Requires: gstreamermm-1.0 >= 1.8.0 Requires.private: @SRF_PKGLIBS@ Version: @SRF_PACKAGE_VERSION@ diff --git a/src/init.cpp b/src/init.cpp index 344ba6a..e306ff2 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -39,24 +39,24 @@ void init() "sigrok_legacy_capture_device", "Wrapper for capture devices using legacy libsigrok APIs", sigc::ptr_fun(&LegacyCaptureDevice::register_element), - "0.01", "GPL", "sigrok", "libsigrokflow", "http://sigrok.org"); + "0.01", "GPL", "sigrok", "libsigrokflow", "https://sigrok.org"); Gst::Plugin::register_static(GST_VERSION_MAJOR, GST_VERSION_MINOR, "sigrok_legacy_input", "Wrapper for inputs using legacy libsigrok APIs", sigc::ptr_fun(&LegacyInput::register_element), - "0.01", "GPL", "sigrok", "libsigrokflow", "http://sigrok.org"); + "0.01", "GPL", "sigrok", "libsigrokflow", "https://sigrok.org"); Gst::Plugin::register_static(GST_VERSION_MAJOR, GST_VERSION_MINOR, "sigrok_legacy_output", "Wrapper for outputs using legacy libsigrok APIs", sigc::ptr_fun(&LegacyOutput::register_element), - "0.01", "GPL", "sigrok", "libsigrokflow", "http://sigrok.org"); + "0.01", "GPL", "sigrok", "libsigrokflow", "https://sigrok.org"); #endif #ifdef HAVE_LIBSIGROKDECODE Gst::Plugin::register_static(GST_VERSION_MAJOR, GST_VERSION_MINOR, "sigrok_legacy_decoder", "Wrapper for protocol decoders using legacy libsigrokdecode APIs", sigc::ptr_fun(&LegacyDecoder::register_element), - "0.01", "GPL", "sigrok", "libsigrokflow", "http://sigrok.org"); + "0.01", "GPL", "sigrok", "libsigrokflow", "https://sigrok.org"); #endif srf_initialized_ = true;