Git Product home page Git Product logo

uri's People

Contributors

darold avatar gilles-migops avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

uri's Issues

missing dependency in readme

Hi,

when using Debian 11 you also need to install "libtool" and "autoconf" to successfully build uri.

autoreconf -i
configure.ac:48: error: required file 'docs/Makefile.in' not found
Makefile.am:37: error: Libtool library used but 'LIBTOOL' is undefined
Makefile.am:37: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
Makefile.am:37: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
Makefile.am:37: If 'LT_INIT' is in 'configure.ac', make sure
Makefile.am:37: its definition is in aclocal's search path.
t/lib/Makefile.am:17: error: Libtool library used but 'LIBTOOL' is undefined
t/lib/Makefile.am:17: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
t/lib/Makefile.am:17: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
t/lib/Makefile.am:17: If 'LT_INIT' is in 'configure.ac', make sure
t/lib/Makefile.am:17: its definition is in aclocal's search path.
uriparser/Makefile.am:8: error: Libtool library used but 'LIBTOOL' is undefined
uriparser/Makefile.am:8: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
uriparser/Makefile.am:8: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
uriparser/Makefile.am:8: If 'LT_INIT' is in 'configure.ac', make sure
uriparser/Makefile.am:8: its definition is in aclocal's search path.

Connection gets closed

I run the following command:

INSERT INTO table_name (name, icon_path)
    VALUES
('name_1', 'file:///home/GHNewbiee/icon_1.png'),
('name_2', 'file:///home/GHNewbiee/icon_2.png'),
('name_3', 'file:///home/GHNewbiee/icon_3.png');

but server closes the connection. Please, advice.

Note: Files do not exist yet! Same happens if I use any http://... uri.

Tia

git submodule update timeouts

Hi,

when using

git submodule update --init --recursive

I am getting timeouts for each module that should be retrieved. I had to git clone each repository manually to the desired location. Does anybody else has this problem? If so, it would be great if you could change the readme-file.

make fails to compile liburiparser_la-UriCommon.lo

Hi,

when running "make" I am getting the error stated below:

...
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I./include -W -Wall -W -Wall -I./uriparser/include -g -O2 -MT liburi_la-fragment.lo -MD -MP -MF .deps/liburi_la-fragment.Tpo -c fragment.c -o liburi_la-fragment.o >/dev/null 2>&1
mv -f .deps/liburi_la-fragment.Tpo .deps/liburi_la-fragment.Plo
make[3]: *** Keine Regel vorhanden, um das Ziel „uriparser/src/UriCommon.c“,
  benötigt von „uriparser/src/liburiparser_la-UriCommon.lo“, zu erstellen.  Schluss.

We are running Debian/Testing and Postgresql-15.1.

Compilation problem with PG11

Hi,

I tried to have the extension compiled with PG11 but the following errors appeared:

uri.c:687:56: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURL_HTTP_VERSION_1_0, TRUE);
                                                       ^
uri.c:689:47: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_FAILONERROR, FALSE);
                                                     ^
uri.c:691:57: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURLOPT_FOLLOWLOCATION, TRUE);
                                                        ^
uri.c:702:57: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_SSL_VERIFYHOST, FALSE);
                                                        ^
uri.c:703:57: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_SSL_VERIFYPEER, FALSE);
                                                        ^
uri.c:705:42: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURLOPT_NOBODY, TRUE);
                                                ^
uri.c:781:56: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURL_HTTP_VERSION_1_0, TRUE);
                                                       ^
uri.c:783:47: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_FAILONERROR, FALSE);
                                                     ^
uri.c:785:57: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURLOPT_FOLLOWLOCATION, TRUE);
                                                        ^
uri.c:796:57: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_SSL_VERIFYHOST, FALSE);
                                                        ^
uri.c:797:57: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_SSL_VERIFYPEER, FALSE);
                                                        ^
uri.c:799:42: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURLOPT_NOBODY, TRUE);
                                                ^
uri.c:868:56: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURL_HTTP_VERSION_1_0, TRUE);
                                                       ^
uri.c:870:47: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_FAILONERROR, FALSE);
                                                     ^
uri.c:872:57: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURLOPT_FOLLOWLOCATION, TRUE);
                                                        ^
uri.c:883:57: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_SSL_VERIFYHOST, FALSE);
                                                        ^
uri.c:884:57: error: use of undeclared identifier 'FALSE'
          curl_easy_setopt (eh, CURLOPT_SSL_VERIFYPEER, FALSE);
                                                        ^
uri.c:886:42: error: use of undeclared identifier 'TRUE'
          curl_easy_setopt (eh, CURLOPT_NOBODY, TRUE);

So, I replaced TRUE with 1 and FALSE with 0 and compilation succeeded.

Please, confirm that there is not any chance for side-effect error.

Tia

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.