
Frank,
Frank Strauß wrote:
I have applied your patches (along with an additional AC_SUBST(srcdir) in configure.in). Thanks for that!
No problem. Thanks for getting them applied. The AC_SUBST(srcdir) must be required for some versions of autoconf... everything worked okay without it on my end.
One problem: Three of the mibs Makefile.am's got messed up. For example, the site file refers to 'ietf' instead of 'site'. I have attached a patch that fixes this.
I will spend some more time on the test suite and when it's ready (i.e. when it completes without errors) I think I will put out a 0.4.2 release.
Sounds good to me. I will watch the list until then. Abe Backus will be maintaining the actual Cygwin port, so you might hear from him instead of me.
Harold
? libsmi.diff ? mibs.diff ? test/parser.test.in.diff Index: mibs/irtf/Makefile.am =================================================================== RCS file: /anoncvs/libsmi/mibs/irtf/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- mibs/irtf/Makefile.am 1 Dec 2003 12:24:21 -0000 1.2 +++ mibs/irtf/Makefile.am 1 Dec 2003 13:10:50 -0000 @@ -11,7 +11,7 @@ # @(#) $Id: Makefile.am,v 1.2 2003/12/01 12:24:21 strauss Exp $ #
-ietfdir = $(mibdir)/ietf +irtfdir = $(mibdir)/irtf MIBS = $(shell ls -1 $(srcdir) | egrep -v 'CVS|Makefile') EXTRA_DIST = $(MIBS) -ietf_DATA = $(MIBS) +irtf_DATA = $(MIBS) Index: mibs/site/Makefile.am =================================================================== RCS file: /anoncvs/libsmi/mibs/site/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- mibs/site/Makefile.am 1 Dec 2003 12:24:22 -0000 1.2 +++ mibs/site/Makefile.am 1 Dec 2003 13:10:50 -0000 @@ -11,7 +11,7 @@ # @(#) $Id: Makefile.am,v 1.2 2003/12/01 12:24:22 strauss Exp $ #
-ietfdir = $(mibdir)/ietf +sitedir = $(mibdir)/site MIBS = $(shell ls -1 $(srcdir) | egrep -v 'CVS|Makefile') EXTRA_DIST = $(MIBS) -ietf_DATA = $(MIBS) +site_DATA = $(MIBS) Index: mibs/tubs/Makefile.am =================================================================== RCS file: /anoncvs/libsmi/mibs/tubs/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- mibs/tubs/Makefile.am 1 Dec 2003 12:24:24 -0000 1.2 +++ mibs/tubs/Makefile.am 1 Dec 2003 13:10:50 -0000 @@ -11,7 +11,7 @@ # @(#) $Id: Makefile.am,v 1.2 2003/12/01 12:24:24 strauss Exp $ #
-ietfdir = $(mibdir)/ietf +tubsdir = $(mibdir)/tubs MIBS = $(shell ls -1 $(srcdir) | egrep -v 'CVS|Makefile') EXTRA_DIST = $(MIBS) -ietf_DATA = $(MIBS) +tubs_DATA = $(MIBS)