Browse Source

[trac977] Create the ACL library

Michal 'vorner' Vaner 14 years ago
parent
commit
5705a62ebb
5 changed files with 8 additions and 2 deletions
  1. 2 0
      configure.ac
  2. 1 1
      doc/Doxyfile
  3. 1 1
      src/lib/Makefile.am
  4. 4 0
      src/lib/acl/Makefile.am
  5. 0 0
      src/lib/acl/tests/Makefile.am

+ 2 - 0
configure.ac

@@ -827,6 +827,8 @@ AC_CONFIG_FILES([Makefile
                  src/lib/util/unittests/Makefile
                  src/lib/util/pyunittests/Makefile
                  src/lib/util/tests/Makefile
+                 src/lib/acl/Makefile
+                 src/lib/acl/tests/Makefile
                  tests/Makefile
                  tests/system/Makefile
                  tests/tools/Makefile

+ 1 - 1
doc/Doxyfile

@@ -574,7 +574,7 @@ INPUT                  = ../src/lib/cc ../src/lib/config \
     ../src/lib/log ../src/lib/asiolink/ ../src/lib/nsas \
     ../src/lib/testutils ../src/lib/cache ../src/lib/server_common/ \
     ../src/bin/sockcreator/ ../src/lib/util/
-    ../src/lib/resolve
+    ../src/lib/resolve ../src/lib/acl
 
 # This tag can be used to specify the character encoding of the source files
 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is

+ 1 - 1
src/lib/Makefile.am

@@ -1,3 +1,3 @@
 SUBDIRS = exceptions util log cryptolink dns cc config python xfr \
           bench asiolink asiodns nsas cache resolve testutils datasrc \
-          server_common
+          server_common acl

+ 4 - 0
src/lib/acl/Makefile.am

@@ -0,0 +1,4 @@
+SUBDIRS = tests
+
+# TODO: Once we have some cc file we are able to compile, create the library.
+# For now, we have only header files, not creating empty library.

+ 0 - 0
src/lib/acl/tests/Makefile.am