Skip to content
This repository has been archived by the owner on Jan 1, 2022. It is now read-only.

Use pkg-config to determine openssl LDFLAGS #1

Closed
wants to merge 16 commits into from
Closed

Use pkg-config to determine openssl LDFLAGS #1

wants to merge 16 commits into from

Commits on Aug 5, 2020

  1. Import version 1.2.2 from http://www.vervest.org/htp/

    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    b9835ea View commit details
    Browse the repository at this point in the history
  2. LICENSE: new file

    Adding a real license file.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    1933f1d View commit details
    Browse the repository at this point in the history
  3. htpdate.c: fixing formatting

    Fixing various formatting issues.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    869c80b View commit details
    Browse the repository at this point in the history
  4. makefile: allow cross compiling

    In order to crosscompile, CC variable cannot point to an hardcoded gcc
    executable
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    45249fe View commit details
    Browse the repository at this point in the history
  5. Makefile: removing stripping

    Stripping is not necessary due to the fact that the application is not compiled
    with debug symbols.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    678ee73 View commit details
    Browse the repository at this point in the history
  6. htpdate: bump to version 1.2.3

    Bump to version 1.2.3 and update changelog.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    c4dacb7 View commit details
    Browse the repository at this point in the history
  7. htpdate: enable https support

    This patch enable https support for http get requests.
    To compile https support:
    
    make ENABLE_HTTPS=1
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    30f2f77 View commit details
    Browse the repository at this point in the history
  8. htpdate: fix date parsing

    On some servers (like github) replies, server timestamp is not contained in
    "Date" field but in "date" one.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    b8b1947 View commit details
    Browse the repository at this point in the history
  9. .gitignore: new file

    Adding git ignore file
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    76c153f View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2020

  1. htpdate: move to use adjtimex

    ntp_adjtime is not available on some versions of the c library
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 6, 2020
    Configuration menu
    Copy the full SHA
    eb0e794 View commit details
    Browse the repository at this point in the history
  2. htpdate: bump to version 1.2.4

    Bump to version 1.2.4 and update changelog.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 6, 2020
    Configuration menu
    Copy the full SHA
    829411d View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2020

  1. README: add a note on project maintenance

    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    45bd40c View commit details
    Browse the repository at this point in the history
  2. scripts: adding systemv, systemd init scripts

    This patch adds systemv and systemd init scripts
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    53df420 View commit details
    Browse the repository at this point in the history
  3. README: add an example for https

    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    7d89cfe View commit details
    Browse the repository at this point in the history
  4. htpdate: add message if https is disabled

    https can be disable at compile time, http and https can be mixed on the
    commandline, so display an info for https host not supported.
    
    Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
    angeloc committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    54f754c View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2020

  1. Use pkg-config to determine openssl LDFLAGS

    Depending on its build configuration, openssl might not be compiled with
    dynamic zlib support, and programs that link against openssl need to link
    against zlib as well, as illustrated in this build failure:
    http://autobuild.buildroot.net/results/ae9/ae946ca72238840b3eaa5fe823e8d620618f7462/
    
    Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
    Titouan Christophe committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    32d6cec View commit details
    Browse the repository at this point in the history