Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Knot DNS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
23
Issues
23
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Knot projects
Knot DNS
Commits
0fa915f7
Commit
0fa915f7
authored
May 27, 2014
by
Lubos Slovak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libknot: Modified Makefile
parent
7bd4aeb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
24 deletions
+27
-24
src/Makefile.am
src/Makefile.am
+26
-23
src/libknot/descriptor.c
src/libknot/descriptor.c
+1
-1
No files found.
src/Makefile.am
View file @
0fa915f7
...
...
@@ -60,28 +60,17 @@ knsupdate_SOURCES = \
knsec3hash_SOURCES
=
\
utils/nsec3hash/nsec3hash_main.c
# static: shared
# static: shared
(not in libknot)
libknots_la_SOURCES
=
\
common/array-sort.h
\
common/base32hex.c
\
common/base32hex.h
\
common/base64.c
\
common/base64.h
\
common/binsearch.h
\
common/crc.h
\
common/debug.h
\
common/descriptor.c
\
common/descriptor.h
\
common/errcode.c
\
common/errcode.h
\
common/errors.c
\
common/errors.h
\
common/evsched.c
\
common/evsched.h
\
common/fdset.c
\
common/fdset.h
\
common/getline.c
\
common/getline.h
\
common/hattrie/hat-trie.c
\
common/hattrie/hat-trie.h
\
common/hattrie/murmurhash3.c
\
...
...
@@ -96,9 +85,6 @@ libknots_la_SOURCES = \
common/lists.h
\
common/log.c
\
common/log.h
\
common/memdup.h
\
common/mempattern.c
\
common/mempattern.h
\
common/mempool.c
\
common/mempool.h
\
common/print.c
\
...
...
@@ -112,6 +98,17 @@ libknots_la_SOURCES = \
common/sockaddr.h
\
common/strtonum.h
# static: common shared (also in libknot)
libknotcs_la_SOURCES
=
\
common/base32hex.c
\
common/base32hex.h
\
common/base64.c
\
common/base64.h
\
common/memdup.h
\
common/debug.h
\
common/getline.c
\
common/getline.h
# static: utilities shared
libknotus_la_SOURCES
=
\
utils/common/exec.c
\
...
...
@@ -140,6 +137,8 @@ libknot_la_SOURCES = \
libknot/consts.c
\
libknot/consts.h
\
libknot/consts.h
\
libknot/descriptor.c
\
libknot/descriptor.h
\
libknot/dname.c
\
libknot/dname.h
\
libknot/dnssec/config.h
\
...
...
@@ -157,9 +156,11 @@ libknot_la_SOURCES = \
libknot/dnssec/sig0.h
\
libknot/dnssec/sign.c
\
libknot/dnssec/sign.h
\
libknot/
rrtype/opt
.c
\
libknot/
rrtype/opt
.h
\
libknot/
errcode
.c
\
libknot/
errcode
.h
\
libknot/libknot.h
\
libknot/mempattern.c
\
libknot/mempattern.h
\
libknot/packet/compr.c
\
libknot/packet/compr.h
\
libknot/packet/pkt.c
\
...
...
@@ -175,6 +176,8 @@ libknot_la_SOURCES = \
libknot/rrtype/nsec3param.h
\
libknot/rrtype/nsec3param.c
\
libknot/rrtype/nsec.h
\
libknot/rrtype/opt.c
\
libknot/rrtype/opt.h
\
libknot/rrtype/rrsig.h
\
libknot/rrtype/soa.h
\
libknot/rrtype/tsig.c
\
...
...
@@ -309,8 +312,8 @@ libknotd_la_SOURCES = \
knot/zone/zonefile.h
# libraries
libknot_la_LIBADD
=
libknots.la zscanner/libzscanner.la
libknotd_la_LIBADD
=
libknots.la libknot.la
libknot_la_LIBADD
=
libknots.la
libknotcs.la
zscanner/libzscanner.la
libknotd_la_LIBADD
=
libknots.la libknot
cs.la libknot
.la
# sbin programs
knotd_LDADD
=
libknot.la libknotd.la
...
...
@@ -320,10 +323,10 @@ knotd_LDFLAGS = $(AM_LDFLAGS) ${systemd_daemon_LIBS}
knotc_LDADD
=
libknot.la libknotd.la
# bin programs
kdig_LDADD
=
libknotus.la libknots.la libknot.la
khost_LDADD
=
libknotus.la libknots.la libknot.la
knsupdate_LDADD
=
libknotus.la libknots.la libknot.la zscanner/libzscanner.la
knsec3hash_LDADD
=
libknotus.la libknots.la libknot.la
kdig_LDADD
=
libknotus.la libknots.la libknot
cs.la libknot
.la
khost_LDADD
=
libknotus.la libknots.la libknot
cs.la libknot
.la
knsupdate_LDADD
=
libknotus.la libknots.la libknot
cs.la libknot
.la zscanner/libzscanner.la
knsec3hash_LDADD
=
libknotus.la libknots.la libknot
cs.la libknot
.la
if
HAVE_DNSTAP
libknotd_la_SOURCES
+=
\
...
...
src/libknot/descriptor.c
View file @
0fa915f7
...
...
@@ -18,7 +18,7 @@
#include <stdlib.h> // strtoul
#include <strings.h> // strcasecmp
#include
<common/descriptor.h>
#include
"libknot/descriptor.h"
/*!
* \brief Table with DNS classes.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment