Check-in Number:
|
3599 | |
Date: |
2003-Sep-10 15:54:33 (local)
2003-Sep-10 13:54:33 (UTC) |
User: | rse |
Branch: | |
Comment: |
Find pod2man(1) side-by-side with perl(1) executable. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/snmpdx/00TODO 1.12 -> 1.13
--- 00TODO 2003/09/10 13:35:02 1.12
+++ 00TODO 2003/09/10 13:54:33 1.13
@@ -10,7 +10,6 @@
====
- snmp mibs dir was lost
- - pod2man is found in $PATH
- we should add --with-snmp
- implement more probes [thl]
- write snmpdx.pod documentation
|
|
ossp-pkg/snmpdx/ChangeLog 1.7 -> 1.8
--- ChangeLog 2003/09/10 13:30:47 1.7
+++ ChangeLog 2003/09/10 13:54:33 1.8
@@ -8,6 +8,16 @@
ChangeLog
+ Changes between 0.2.5 and 0.2.6 (10-Sep-2003 to 10-Sep-2003):
+
+ *) Find pod2man(1) side-by-side with perl(1) executable.
+ [Ralf S. Engelschall]
+
+ Changes between 0.2.4 and 0.2.5 (09-Sep-2003 to 10-Sep-2003):
+
+ *) Source tree polishing.
+ [Ralf S. Engelschall]
+
Changes between 0.2.0 and 0.2.4 (09-Sep-2003):
*) Lot's of fiddling with the build environment.
|
|
ossp-pkg/snmpdx/Makefile.in 1.7 -> 1.8
--- Makefile.in 2003/09/10 13:35:15 1.7
+++ Makefile.in 2003/09/10 13:54:33 1.8
@@ -32,7 +32,7 @@
SHTOOL = ./shtool
RM = rm -f
SED = sed
-POD2MAN = pod2man
+POD2MAN = @PATH_POD2MAN@
PERL = @PATH_PERL@
prefix = @prefix@
|
|
ossp-pkg/snmpdx/configure.ac 1.3 -> 1.4
--- configure.ac 2003/09/10 13:30:47 1.3
+++ configure.ac 2003/09/10 13:54:33 1.4
@@ -45,6 +45,8 @@
PATH_PERL="$with_perl"
AC_SUBST(PATH_PERL)
AC_MSG_RESULT($PATH_PERL)
+PATH_POD2MAN=`echo "$PATH_PERL" | sed -e 's;/[[^/]]*$;/pod2man;'`
+AC_SUBST(PATH_POD2MAN)
AC_SET_MAKE
|
|