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

Annotation of mandoc/lib.in, Revision 1.3

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

CVSweb