Index: ossp-pkg/xds/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/xds/Makefile.in,v rcsdiff -q -kk '-r1.16' '-r1.17' -u '/v/ossp/cvs/ossp-pkg/xds/Makefile.in,v' 2>/dev/null --- Makefile.in 2001/08/02 17:24:49 1.16 +++ Makefile.in 2001/08/07 11:16:19 1.17 @@ -41,13 +41,10 @@ $(AR) cr $@ $(OBJS) $(RANLIB) $@ -xds.3: xds.pod - pod2man --section=3 --center="XDS Library Programmer API " xds.pod >xds.3 - clean:: @(cd regression-tests && $(MAKE) $@) rm -f $(OBJS) - rm -f libxds.a test.o test xds.3 + rm -f libxds.a distclean:: clean @(cd regression-tests && $(MAKE) $@) Index: ossp-pkg/xds/configure.ac RCS File: /v/ossp/cvs/ossp-pkg/xds/configure.ac,v rcsdiff -q -kk '-r1.13' '-r1.14' -u '/v/ossp/cvs/ossp-pkg/xds/configure.ac,v' 2>/dev/null --- configure.ac 2001/08/02 14:56:53 1.13 +++ configure.ac 2001/08/07 11:16:19 1.14 @@ -12,6 +12,8 @@ dnl AC_PROG_CC AC_PROG_RANLIB +AC_CHECK_PROG(LATEX, latex, latex, :) +AC_CHECK_PROG(POD2MAN, pod2man, pod2man, :) dnl Set special flags for gcc. dnl @@ -79,6 +81,6 @@ dnl Write results. dnl -AC_CONFIG_FILES(xds.h Makefile regression-tests/Makefile) -AC_CONFIG_COMMANDS([default], [chmod -w xds.h Makefile regression-tests/Makefile]) +AC_CONFIG_FILES(xds.h Makefile regression-tests/Makefile docs/Makefile) +AC_CONFIG_COMMANDS([default], [chmod -w xds.h Makefile regression-tests/Makefile docs/Makefile]) AC_OUTPUT