From dcfc52bbba3307901b9c01d4c54adb88d998243a Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Tue, 16 Oct 2001 23:21:07 +0000 Subject: [PATCH] Added a version.h file for each library; made version variables const --- lib/bind9/include/bind9/Makefile.in | 4 ++-- lib/bind9/include/bind9/version.h | 24 ++++++++++++++++++++++++ lib/bind9/version.c | 12 +++++++----- lib/dns/include/dns/Makefile.in | 4 ++-- lib/dns/include/dns/version.h | 24 ++++++++++++++++++++++++ lib/dns/version.c | 12 +++++++----- lib/dns/win32/version.c | 12 +++++++----- lib/isc/include/isc/Makefile.in | 4 ++-- lib/isc/include/isc/version.h | 24 ++++++++++++++++++++++++ lib/isc/version.c | 12 +++++++----- lib/isc/win32/version.c | 12 +++++++----- lib/isccc/include/isccc/Makefile.in | 4 ++-- lib/isccc/include/isccc/version.h | 24 ++++++++++++++++++++++++ lib/isccc/version.c | 12 +++++++----- lib/isccc/win32/version.c | 12 +++++++----- lib/isccfg/include/isccfg/Makefile.in | 4 ++-- lib/isccfg/include/isccfg/version.h | 24 ++++++++++++++++++++++++ lib/isccfg/version.c | 13 ++++++++----- lib/isccfg/win32/version.c | 13 ++++++++----- util/copyrights | 5 +++++ 20 files changed, 200 insertions(+), 55 deletions(-) create mode 100644 lib/bind9/include/bind9/version.h create mode 100644 lib/dns/include/dns/version.h create mode 100644 lib/isc/include/isc/version.h create mode 100644 lib/isccc/include/isccc/version.h create mode 100644 lib/isccfg/include/isccfg/version.h diff --git a/lib/bind9/include/bind9/Makefile.in b/lib/bind9/include/bind9/Makefile.in index 1be57f5599..0619b47270 100644 --- a/lib/bind9/include/bind9/Makefile.in +++ b/lib/bind9/include/bind9/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.3 2001/10/01 20:53:48 gson Exp $ +# $Id: Makefile.in,v 1.4 2001/10/16 23:20:50 gson Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -26,7 +26,7 @@ top_srcdir = @top_srcdir@ # machine generated. The latter are handled specially in the # install target below. # -HEADERS = check.h +HEADERS = check.h version.h SUBDIRS = TARGETS = diff --git a/lib/bind9/include/bind9/version.h b/lib/bind9/include/bind9/version.h new file mode 100644 index 0000000000..27043e753b --- /dev/null +++ b/lib/bind9/include/bind9/version.h @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM + * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL + * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: version.h,v 1.1 2001/10/16 23:20:51 gson Exp $ */ + +extern const char bind9_version[]; + +extern const unsigned int bind9_libinterface; +extern const unsigned int bind9_librevision; +extern const unsigned int bind9_libage; diff --git a/lib/bind9/version.c b/lib/bind9/version.c index 2856bd6481..671a6f75b8 100644 --- a/lib/bind9/version.c +++ b/lib/bind9/version.c @@ -15,10 +15,12 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.1 2001/09/20 15:17:06 marka Exp $ */ +/* $Id: version.c,v 1.2 2001/10/16 23:20:48 gson Exp $ */ -char bind9_version[] = VERSION; +#include -unsigned int bind9_libinterface = LIBINTERFACE; -unsigned int bind9_librevision = LIBREVISION; -unsigned int bind9_libage = LIBAGE; +const char bind9_version[] = VERSION; + +const unsigned int bind9_libinterface = LIBINTERFACE; +const unsigned int bind9_librevision = LIBREVISION; +const unsigned int bind9_libage = LIBAGE; diff --git a/lib/dns/include/dns/Makefile.in b/lib/dns/include/dns/Makefile.in index e4ab1aecca..d4d3c74b4a 100644 --- a/lib/dns/include/dns/Makefile.in +++ b/lib/dns/include/dns/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.43 2001/05/04 17:08:43 gson Exp $ +# $Id: Makefile.in,v 1.44 2001/10/16 23:20:52 gson Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -32,7 +32,7 @@ HEADERS = a6.h acl.h adb.h byaddr.h cache.h callbacks.h \ rdataslab.h rdatatype.h request.h resolver.h result.h \ rootns.h sdb.h secalg.h secproto.h ssu.h \ tcpmsg.h time.h tkey.h \ - tsig.h ttl.h types.h validator.h view.h xfrin.h \ + tsig.h ttl.h types.h validator.h version.h view.h xfrin.h \ zone.h zonekey.h zt.h GENHEADERS = enumclass.h enumtype.h rdatastruct.h diff --git a/lib/dns/include/dns/version.h b/lib/dns/include/dns/version.h new file mode 100644 index 0000000000..bd31bdbcfd --- /dev/null +++ b/lib/dns/include/dns/version.h @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM + * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL + * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: version.h,v 1.1 2001/10/16 23:20:53 gson Exp $ */ + +extern const char dns_version[]; + +extern const unsigned int dns_libinterface; +extern const unsigned int dns_librevision; +extern const unsigned int dns_libage; diff --git a/lib/dns/version.c b/lib/dns/version.c index 0d6dd67e0e..03679c7e06 100644 --- a/lib/dns/version.c +++ b/lib/dns/version.c @@ -15,10 +15,12 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.9 2001/01/09 21:51:43 bwelling Exp $ */ +/* $Id: version.c,v 1.10 2001/10/16 23:20:51 gson Exp $ */ -char dns_version[] = VERSION; +#include -unsigned int dns_libinterface = LIBINTERFACE; -unsigned int dns_librevision = LIBREVISION; -unsigned int dns_libage = LIBAGE; +const char dns_version[] = VERSION; + +const unsigned int dns_libinterface = LIBINTERFACE; +const unsigned int dns_librevision = LIBREVISION; +const unsigned int dns_libage = LIBAGE; diff --git a/lib/dns/win32/version.c b/lib/dns/win32/version.c index 6af9e2e90e..52c2eba3bc 100644 --- a/lib/dns/win32/version.c +++ b/lib/dns/win32/version.c @@ -15,12 +15,14 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.1 2001/07/16 05:10:30 mayer Exp $ */ +/* $Id: version.c,v 1.2 2001/10/16 23:20:54 gson Exp $ */ #include -char dns_version[] = VERSION; +#include -unsigned int dns_libinterface = LIBINTERFACE; -unsigned int dns_librevision = LIBREVISION; -unsigned int dns_libage = LIBAGE; \ No newline at end of file +const char dns_version[] = VERSION; + +const unsigned int dns_libinterface = LIBINTERFACE; +const unsigned int dns_librevision = LIBREVISION; +const unsigned int dns_libage = LIBAGE; diff --git a/lib/isc/include/isc/Makefile.in b/lib/isc/include/isc/Makefile.in index 7980818edc..100bc0d162 100644 --- a/lib/isc/include/isc/Makefile.in +++ b/lib/isc/include/isc/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.50 2001/07/06 22:11:40 gson Exp $ +# $Id: Makefile.in,v 1.51 2001/10/16 23:20:56 gson Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -37,7 +37,7 @@ HEADERS = app.h assertions.h base64.h bitstring.h boolean.h buffer.h \ refcount.h region.h resource.h \ result.h resultclass.h rwlock.h serial.h sha1.h sockaddr.h \ socket.h stdio.h string.h symtab.h task.h taskpool.h timer.h \ - types.h util.h + types.h util.h version.h SUBDIRS = TARGETS = diff --git a/lib/isc/include/isc/version.h b/lib/isc/include/isc/version.h new file mode 100644 index 0000000000..38b325bd7d --- /dev/null +++ b/lib/isc/include/isc/version.h @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM + * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL + * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: version.h,v 1.1 2001/10/16 23:20:57 gson Exp $ */ + +extern const char isc_version[]; + +extern const unsigned int isc_libinterface; +extern const unsigned int isc_librevision; +extern const unsigned int isc_libage; diff --git a/lib/isc/version.c b/lib/isc/version.c index d83342eac9..4489b20856 100644 --- a/lib/isc/version.c +++ b/lib/isc/version.c @@ -15,10 +15,12 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.9 2001/01/09 21:56:38 bwelling Exp $ */ +/* $Id: version.c,v 1.10 2001/10/16 23:20:55 gson Exp $ */ -char isc_version[] = VERSION; +#include -unsigned int isc_libinterface = LIBINTERFACE; -unsigned int isc_librevision = LIBREVISION; -unsigned int isc_libage = LIBAGE; +const char isc_version[] = VERSION; + +const unsigned int isc_libinterface = LIBINTERFACE; +const unsigned int isc_librevision = LIBREVISION; +const unsigned int isc_libage = LIBAGE; diff --git a/lib/isc/win32/version.c b/lib/isc/win32/version.c index d1ba2da6ad..df0f30c5bc 100644 --- a/lib/isc/win32/version.c +++ b/lib/isc/win32/version.c @@ -15,12 +15,14 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.2 2001/07/08 05:09:20 mayer Exp $ */ +/* $Id: version.c,v 1.3 2001/10/16 23:20:57 gson Exp $ */ #include -char isc_version[] = VERSION; +#include -unsigned int isc_libinterface = LIBINTERFACE; -unsigned int isc_librevision = LIBREVISION; -unsigned int isc_libage = LIBAGE; +const char isc_version[] = VERSION; + +const unsigned int isc_libinterface = LIBINTERFACE; +const unsigned int isc_librevision = LIBREVISION; +const unsigned int isc_libage = LIBAGE; diff --git a/lib/isccc/include/isccc/Makefile.in b/lib/isccc/include/isccc/Makefile.in index e2269aa6c9..77e942b3a2 100644 --- a/lib/isccc/include/isccc/Makefile.in +++ b/lib/isccc/include/isccc/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.3 2001/04/16 22:44:43 bwelling Exp $ +# $Id: Makefile.in,v 1.4 2001/10/16 23:21:00 gson Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -27,7 +27,7 @@ top_srcdir = @top_srcdir@ # install target below. # HEADERS = alist.h base64.h cc.h ccmsg.h events.h lib.h result.h \ - sexpr.h symtab.h symtype.h types.h util.h + sexpr.h symtab.h symtype.h types.h util.h version.h SUBDIRS = TARGETS = diff --git a/lib/isccc/include/isccc/version.h b/lib/isccc/include/isccc/version.h new file mode 100644 index 0000000000..3c550d6a80 --- /dev/null +++ b/lib/isccc/include/isccc/version.h @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM + * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL + * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: version.h,v 1.1 2001/10/16 23:21:01 gson Exp $ */ + +extern const char isccc_version[]; + +extern const unsigned int isccc_libinterface; +extern const unsigned int isccc_librevision; +extern const unsigned int isccc_libage; diff --git a/lib/isccc/version.c b/lib/isccc/version.c index b40e2d3ff0..5261b8675a 100644 --- a/lib/isccc/version.c +++ b/lib/isccc/version.c @@ -15,10 +15,12 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.1 2001/07/09 22:25:27 gson Exp $ */ +/* $Id: version.c,v 1.2 2001/10/16 23:20:59 gson Exp $ */ -char isccc_version[] = VERSION; +#include -unsigned int isccc_libinterface = LIBINTERFACE; -unsigned int isccc_librevision = LIBREVISION; -unsigned int isccc_libage = LIBAGE; +const char isccc_version[] = VERSION; + +const unsigned int isccc_libinterface = LIBINTERFACE; +const unsigned int isccc_librevision = LIBREVISION; +const unsigned int isccc_libage = LIBAGE; diff --git a/lib/isccc/win32/version.c b/lib/isccc/win32/version.c index ceff0fef28..96ebbf1457 100644 --- a/lib/isccc/win32/version.c +++ b/lib/isccc/win32/version.c @@ -15,12 +15,14 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.2 2001/07/17 20:29:35 gson Exp $ */ +/* $Id: version.c,v 1.3 2001/10/16 23:21:02 gson Exp $ */ #include -char isccc_version[] = VERSION; +#include -unsigned int isccc_libinterface = LIBINTERFACE; -unsigned int isccc_librevision = LIBREVISION; -unsigned int isccc_libage = LIBAGE; +const char isccc_version[] = VERSION; + +const unsigned int isccc_libinterface = LIBINTERFACE; +const unsigned int isccc_librevision = LIBREVISION; +const unsigned int isccc_libage = LIBAGE; diff --git a/lib/isccfg/include/isccfg/Makefile.in b/lib/isccfg/include/isccfg/Makefile.in index a5237b2c82..05618eac93 100644 --- a/lib/isccfg/include/isccfg/Makefile.in +++ b/lib/isccfg/include/isccfg/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.5 2001/09/29 20:00:39 halley Exp $ +# $Id: Makefile.in,v 1.6 2001/10/16 23:21:04 gson Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -26,7 +26,7 @@ top_srcdir = @top_srcdir@ # machine generated. The latter are handled specially in the # install target below. # -HEADERS = cfg.h log.h +HEADERS = cfg.h log.h version.h SUBDIRS = TARGETS = diff --git a/lib/isccfg/include/isccfg/version.h b/lib/isccfg/include/isccfg/version.h new file mode 100644 index 0000000000..50fed14663 --- /dev/null +++ b/lib/isccfg/include/isccfg/version.h @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM + * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL + * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: version.h,v 1.1 2001/10/16 23:21:05 gson Exp $ */ + +extern const char cfg_version[]; + +extern const unsigned int cfg_libinterface; +extern const unsigned int cfg_librevision; +extern const unsigned int cfg_libage; diff --git a/lib/isccfg/version.c b/lib/isccfg/version.c index d3a76a1e42..79307f0fb2 100644 --- a/lib/isccfg/version.c +++ b/lib/isccfg/version.c @@ -15,10 +15,13 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.1 2001/07/09 22:25:28 gson Exp $ */ +/* $Id: version.c,v 1.2 2001/10/16 23:21:03 gson Exp $ */ -char cfg_version[] = VERSION; +#include + +const char cfg_version[] = VERSION; + +const unsigned int cfg_libinterface = LIBINTERFACE; +const unsigned int cfg_librevision = LIBREVISION; +const unsigned int cfg_libage = LIBAGE; -unsigned int cfg_libinterface = LIBINTERFACE; -unsigned int cfg_librevision = LIBREVISION; -unsigned int cfg_libage = LIBAGE; diff --git a/lib/isccfg/win32/version.c b/lib/isccfg/win32/version.c index ead768058e..c3e1ab2329 100644 --- a/lib/isccfg/win32/version.c +++ b/lib/isccfg/win32/version.c @@ -15,12 +15,15 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: version.c,v 1.1 2001/07/16 05:48:16 mayer Exp $ */ +/* $Id: version.c,v 1.2 2001/10/16 23:21:05 gson Exp $ */ #include -char cfg_version[] = VERSION; +#include + +const char cfg_version[] = VERSION; + +const unsigned int cfg_libinterface = LIBINTERFACE; +const unsigned int cfg_librevision = LIBREVISION; +const unsigned int cfg_libage = LIBAGE; -unsigned int cfg_libinterface = LIBINTERFACE; -unsigned int cfg_librevision = LIBREVISION; -unsigned int cfg_libage = LIBAGE; diff --git a/util/copyrights b/util/copyrights index 14209830c5..d7f8740953 100644 --- a/util/copyrights +++ b/util/copyrights @@ -1524,6 +1524,7 @@ ./lib/bind/resolv/res_send.c X 2001 ./lib/bind/resolv/res_sendsigned.c X 2001 ./lib/bind/resolv/res_update.c X 2001 +./lib/bind9/include/bind9/version.h C 2001 ./lib/dns/.cvsignore X 1999,2000,2001 ./lib/dns/Makefile.in MAKE 1998,1999,2000,2001 ./lib/dns/a6.c C 1999,2000,2001 @@ -1607,6 +1608,7 @@ ./lib/dns/include/dns/ttl.h C 1999,2000,2001 ./lib/dns/include/dns/types.h C 1998,1999,2000,2001 ./lib/dns/include/dns/validator.h C 2000,2001 +./lib/dns/include/dns/version.h C 2001 ./lib/dns/include/dns/view.h C 1999,2000,2001 ./lib/dns/include/dns/xfrin.h C 1999,2000,2001 ./lib/dns/include/dns/zone.h C 1999,2000,2001 @@ -1855,6 +1857,7 @@ ./lib/isc/include/isc/timer.h C 1998,1999,2000,2001 ./lib/isc/include/isc/types.h C 1999,2000,2001 ./lib/isc/include/isc/util.h C 1998,1999,2000,2001 +./lib/isc/include/isc/version.h C 2001 ./lib/isc/inet_aton.c C.PORTION 1996,1997,1998,1999,2000,2001 ./lib/isc/inet_ntop.c C 1996,1997,1998,1999,2000,2001 ./lib/isc/inet_pton.c C 1996,1997,1998,1999,2000,2001 @@ -2032,6 +2035,7 @@ ./lib/isccc/include/isccc/symtype.h C.NOM 2001 ./lib/isccc/include/isccc/types.h C.NOM 2001 ./lib/isccc/include/isccc/util.h C.NOM 2001 +./lib/isccc/include/isccc/version.h C 2001 ./lib/isccc/lib.c C.NOM 2001 ./lib/isccc/result.c C.NOM 2001 ./lib/isccc/sexpr.c C.NOM 2001 @@ -2054,6 +2058,7 @@ ./lib/isccfg/include/isccfg/cfg.h C 2000,2001 ./lib/isccfg/include/isccfg/check.h C 2001 ./lib/isccfg/include/isccfg/log.h C 2001 +./lib/isccfg/include/isccfg/version.h C 2001 ./lib/isccfg/log.c C 2001 ./lib/isccfg/parser.c C 2000,2001 ./lib/isccfg/version.c C 1998,1999,2000,2001