summaryrefslogtreecommitdiffstats
path: root/crypto/cpt_err.c
AgeCommit message (Expand)Author
2017-06-07make error tables const and separate header fileRich Salz
2016-07-20Check for errors allocating the error strings.Kurt Roeckx
2016-05-23Remove unused error/function codes.Rich Salz
2016-05-17Manual fixes after copyright consolidationRich Salz
2016-04-18Make string_to_hex/hex_to_string publicRich Salz
2016-02-10After renaming init, update errors.Rich Salz
2016-02-10Attempt to log an error if init failedMatt Caswell
2016-01-26Remove /* foo.c */ commentsRich Salz
2015-12-16Rename some BUF_xxx to OPENSSL_xxxRich Salz
2015-12-01ex_data part 2: doc fixes and CRYPTO_free_ex_index.Rich Salz
2015-11-05Rebuild error source files.Dr. Stephen Henson
2015-07-20Rewrite crypto/ex_dataRich Salz
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell
2011-05-19Implement FIPS_mode and FIPS_mode_setDr. Stephen Henson
2006-11-21Update from 0.9.8 stable. Eliminate duplicate error codes.Dr. Stephen Henson
2005-04-12Rebuild error codes.Dr. Stephen Henson
2001-09-01First step in fixing "ex_data" support. Warning: big commit log ...Geoff Thorpe
2001-02-19Make all configuration macros available for application by makingRichard Levitte
2000-06-18Add support for dynamically created and destroyed mutexes. This willRichard Levitte
2000-03-05Preserve reason strings in automatically build tables.Bodo Möller
1999-04-24Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson
1999-04-23Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller
1999-04-19Change functions to ANSI C.Ulf Möller
1998-12-21Import of old SSLeay release: SSLeay 0.9.1b (unreleased)SSLeayRalf S. Engelschall
1998-12-21Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall
or: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
ARG DISTRO=arch
ARG VERSION=current
FROM netdata/package-builders:${DISTRO}${VERSION}

ARG ACLK=no
ARG EXTRA_CFLAGS

COPY . /opt/netdata/source
WORKDIR /opt/netdata/source

RUN git config --global user.email "root@container"
RUN git config --global user.name "Fake root"

# RUN make distclean   -> not safe if tree state changed on host since last config
# Kill everything that is not in .gitignore preserving any fresh changes, i.e. untracked changes will be
# deleted but local changes to tracked files will be preserved.
RUN if git status --porcelain | grep '^[MADRC]'; then \
        git stash && git clean -dxf && (git stash apply || true) \
    else \
        git clean -dxf ; \
    fi

# Not everybody is updating distclean properly - fix.
RUN find . -name '*.Po' -exec rm \{\} \;
RUN rm -rf autom4te.cache
RUN rm -rf .git/
RUN find . -type f >/opt/netdata/manifest

RUN CFLAGS="-O1 -ggdb -Wall -Wextra -Wformat-signedness -fstack-protector-all -DNETDATA_INTERNAL_CHECKS=1\
    -D_FORTIFY_SOURCE=2 -DNETDATA_VERIFY_LOCKS=1 ${EXTRA_CFLAGS}" ./netdata-installer.sh --disable-lto

RUN ln -sf /dev/stdout /var/log/netdata/access.log
RUN ln -sf /dev/stdout /var/log/netdata/debug.log
RUN ln -sf /dev/stderr /var/log/netdata/error.log

RUN rm /var/lib/netdata/registry/netdata.public.unique.id

CMD ["/usr/sbin/netdata","-D"]
ENTRYPOINT []