Skip to content
Snippets Groups Projects
Commit 071f4c30 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Updated Knot -> Knot DNS references.

parent 59e52c29
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ Not all prerequisites are available as ports on BSD.
$ CFLAGS=-fPIC ./configure --build amd64
- flex must be newer version from ports that support reentrant parsers
Knot requires more recent version of flex from ports, to prevent name clash, specify flex destination.
Knot DNS requires more recent version of flex from ports, to prevent name clash, specify flex destination.
$ cd <knot sources>
$ autoreconf -if
$ ./configure
......@@ -72,7 +72,7 @@ Not all prerequisites are preinstalled for OS X.
$ CC=gcc-mp-4.6 ARCH=x86_64 ./configure
$ make && sudo make install
Compiling Knot with gcc-mp-4.6 is recommended, but not necessary.
Compiling Knot DNS with gcc-mp-4.6 is recommended, but not necessary.
Running
=======
......
#
# knot.sample.conf
#
# This is a sample configuration file for Knot authoritative DNS server.
# This is a sample configuration file for Knot DNS server.
#
# This is a comment.
......
#
# knot.min.conf
#
# This is a sample of a minimal configuration file for Knot
# authoritative DNS server.
# This is a sample of a minimal configuration file for Knot DNS.
#
# For exhaustive list of all options see samples/knot.sample.conf
# in the source directory.
#
system {
identity "Knot minimal configuration";
identity "Knot DNS minimal configuration";
storage "/tmp/knot-minimal";
}
......
......@@ -587,7 +587,7 @@ int main(int argc, char **argv)
}
break;
case 'V':
printf("%s, version %s\n", PACKAGE_NAME, PACKAGE_VERSION);
printf("%s, version %s\n", "Knot DNS", PACKAGE_VERSION);
return 0;
case 'h':
case '?':
......
......@@ -102,7 +102,7 @@ int main(int argc, char **argv)
verbose = 1;
break;
case 'V':
printf("%s, version %s\n", PACKAGE_NAME, PACKAGE_VERSION);
printf("%s, version %s\n", "Knot DNS", PACKAGE_VERSION);
return 0;
case 'h':
case '?':
......
......@@ -54,7 +54,7 @@ int main(int argc, char **argv)
verbose = 1;
break;
case 'V':
printf("%s, version %s\n", PACKAGE_NAME, PACKAGE_VERSION);
printf("%s, version %s\n", "Knot DNS", PACKAGE_VERSION);
return 0;
case 's':
semantic_checks = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment