[BACK]Return to lib.in CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/lib.in, Revision 1.5

1.5     ! kristaps    1: /*     $Id: lib.in,v 1.4 2009/04/12 19:45:26 kristaps Exp $ */
1.3       kristaps    2: /*
1.5     ! kristaps    3:  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
1.3       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.4       kristaps    6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
1.3       kristaps    8:  *
1.4       kristaps    9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.3       kristaps   16:  */
1.2       kristaps   17:
1.3       kristaps   18: /*
                     19:  * These are all possible .Lb strings.  When a new library is added, add
                     20:  * its short-string to the left-hand side and formatted string to the
                     21:  * right-hand side.
                     22:  *
                     23:  * Be sure to escape strings.
                     24:  */
                     25:
                     26: LINE("libarm",         "ARM Architecture Library (libarm, \\-larm)")
                     27: LINE("libarm32",       "ARM32 Architecture Library (libarm32, \\-larm32)")
                     28: LINE("libc",           "Standard C Library (libc, \\-lc)")
                     29: LINE("libcdk",         "Curses Development Kit Library (libcdk, \\-lcdk)")
                     30: LINE("libcompat",      "Compatibility Library (libcompat, \\-lcompat)")
                     31: LINE("libcrypt",       "Crypt Library (libcrypt, \\-lcrypt)")
                     32: LINE("libcurses",      "Curses Library (libcurses, \\-lcurses)")
                     33: LINE("libedit",                "Command Line Editor Library (libedit, \\-ledit)")
                     34: LINE("libevent",       "Event Notification Library (libevent, \\-levent)")
                     35: LINE("libform",                "Curses Form Library (libform, \\-lform)")
                     36: LINE("libi386",                "i386 Architecture Library (libi386, \\-li386)")
                     37: LINE("libintl",                "Internationalized Message Handling Library (libintl, \\-lintl)")
                     38: LINE("libipsec",       "IPsec Policy Control Library (libipsec, \\-lipsec)")
                     39: LINE("libkvm",         "Kernel Data Access Library (libkvm, \\-lkvm)")
                     40: LINE("libm",           "Math Library (libm, \\-lm)")
                     41: LINE("libm68k",                "m68k Architecture Library (libm68k, \\-lm68k)")
                     42: LINE("libmagic",       "Magic Number Recognition Library (libmagic, \\-lmagic)")
                     43: LINE("libmenu",                "Curses Menu Library (libmenu, \\-lmenu)")
                     44: LINE("libossaudio",    "OSS Audio Emulation Library (libossaudio, \\-lossaudio)")
                     45: LINE("libpam",         "Pluggable Authentication Module Library (libpam, \\-lpam)")
                     46: LINE("libpcap",                "Capture Library (libpcap, \\-lpcap)")
                     47: LINE("libpci",         "PCI Bus Access Library (libpci, \\-lpci)")
                     48: LINE("libpmc",         "Performance Counters Library (libpmc, \\-lpmc)")
                     49: LINE("libposix",       "POSIX Compatibility Library (libposix, \\-lposix)")
                     50: LINE("libpthread",     "POSIX Threads Library (libpthread, \\-lpthread)")
                     51: LINE("libresolv",      "DNS Resolver Library (libresolv, \\-lresolv)")
                     52: LINE("librt",          "POSIX Real\\-time Library (librt, -lrt)")
                     53: LINE("libtermcap",     "Termcap Access Library (libtermcap, \\-ltermcap)")
                     54: LINE("libusbhid",      "USB Human Interface Devices Library (libusbhid, \\-lusbhid)")
                     55: LINE("libutil",                "System Utilities Library (libutil, \\-lutil)")
                     56: LINE("libx86_64",      "x86_64 Architecture Library (libx86_64, \\-lx86_64)")
                     57: LINE("libz",           "Compression Library (libz, \\-lz)")

CVSweb