I have created a new C module echoreq.c for a standard command sendip for my use and echoreq.so would be obviously created on successful compilation and it is.
Now my problem is here ..
Man Page look something like this ..
When I created this new module, a new section is correctly being updated as below..
Arguments for module echoreq.so:
-ci x Echo Request Identifier
Default: 0
and so on ....
but there is no change in the following section which should be there .. I mean echoreq should also be present here.
modules available at compile time:
ipv4 ipv6 icmp tcp udp bgp rip ripng ntp ah dest esp
frag gre hop route sctp wesp.
There are two makefiles and one help2man and one sendip.1 files relevant to this software.
Relevant Sections in these files have been updated as follows...
Makefile:
IPPROTOS= echoreq.so tcp.so udp.so icmp.so
help2man :
// The section seems fine 2 me.
my $mods = `echo ./*.so ./*/*.so`;
$mods =~ s/\.\//-p \.\//g;
my $command = "./sendip 2>/dev/null -h $mods";
my $help_text = join '', map { s/ +$//; expand $_ } `$command`
or die "$this_program: can't get `-$_' info from ./sendip\n";
my $date = strftime "%B %Y", localtime;
(my $program = "./sendip") =~ s!.*/!!;
my $package = $program;
Linux Command Line Output :
$ echo ./*.so ./*/*.so
./bgp.so ./echoreq.so ./icmp.so ./ipv4.so ./ipv6.so ./ntp.so ./ripng.so ./rip.so
./tcp.so ./udp.so ./mec/ah.so ./mec/dest.so ./mec/esp.so ./mec/frag.so ./mec/gre.so
./mec/hop.so ./mec/route.so ./mec/sctp.so ./mec/wesp.so ./mec/xorauth.so ./mec/xorcrypto.so
Command and code both are working fine and also corresponding section is correctly updated so I guess there is no point of checking any other library directory or wrong module name etc.
I may also present the contents of all these files for further reference which may be relevant but avoiding just to make post short and clear and looking for some obvious checks which one may perform under these circumstances.
Please excuse if I am missing something trivial.
sendip.1. The rest of your question doesn't make much sense to me, but perhaps this is the missing piece ... Is the new section generated from your C source file? Where is it being generated, if not into the man page source? – tripleee Dec 10 '12 at 9:54