aboutsummaryrefslogtreecommitdiff
path: root/pcap-config.1
Commit message (Collapse)AuthorAgeFilesLines
* Set the date right in pcap-config(1). [skip ci]Denis Ovsienko2023-05-141-1/+1
|
* pcap-config(1): Simplify and add one more detail. [skip ci]Denis Ovsienko2023-04-171-8/+6
|
* Document pcap-config(1) backward compatibility. [skip ci]Denis Ovsienko2023-04-101-1/+9
|
* Document pcap-config better and test it. [skip ci]Denis Ovsienko2023-02-181-24/+78
| | | | | | | | | | | Reformat "pcap-config --help" message for readability and include --cflags. Rewrite the man page to use the same format in the synopsis, make the options description a standalone section, document the recently implemented --help, --version and --static-pcap-only options, add a section to document the exit status and add a reference to pkg-config(1). In build.sh try various invocations of pcap-config to make sure it still recognizes the documented options and to aid in troubleshooting of failed builds.
* Fixup a few man pages. [skip ci]Denis Ovsienko2021-12-221-1/+1
| | | | | | | In pcap_get_required_select_timeout.3pcap merge two "backward compatibility" sections into one. In pcap-filter.manmisc.in, pcap-config.1 and pcap_dump_open.3pcap.in make section names consistent with other man pages.
* Make more man page references BSD style.Denis Ovsienko2020-08-021-1/+1
| | | | [skip ci]
* update last modified date in man page(s)Denis Ovsienko2015-12-181-1/+1
|
* pcap-config.1 isn't generated.Guy Harris2015-02-151-0/+72
|
* pcap-config.1 is generated by the configure script; don't have it in Git.Guy Harris2015-02-151-72/+0
|
* refresh last midification dates for some man pagesDenis Ovsienko2014-04-071-1/+1
| | | | | This change reflects only meaningful (i.e. not purely editorial) changes in the text.
* remove libpcap's own CVS keywordsDenis Ovsienko2014-01-031-2/+0
| | | | | | This change removes CVS keywords that express that the file belongs to libpcap repository. All such keywords represented the revision and timestamp by the end of 2008 or even older.
* Add a --additional-libs flag to pcap-config, to write out any additionalGuy Harris2009-05-221-2/+13
| | | | | libraries needed to link with libpcap; this is to be used by tcpdump when it's linking with ../libpcap/libpcap.a.
* By default, don't include DEPLIBS in the libraries flags, as aGuy Harris2009-03-271-1/+10
| | | | | | | | | | | | | | dynamically-linked libpcap should have been linked with them (if there are any of them), so it shouldn't be necessary for a program or library to explicitly link with them if it links with libpcap. Add a -static flag that includes DEPLIBS, as, on most if not all platforms, static libraries can't be linked with dynamic libraries, so programs would have to link with libraries on which libpcap depends if it links statically with libpcap. If both --cflags and --libs are given, print both sets of flags, on the same line (as pkg-config does).
* Add a pcap-config script, to handle necessary -I/-L flags and anyguy2008-09-231-0/+54
libraries required by libpcap.