Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/printutils/lpr.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/printutils/lpr.c

    r3232 r3621  
    1212 * See RFC 1179 for protocol description.
    1313 */
     14//config:config LPR
     15//config:   bool "lpr"
     16//config:   default y
     17//config:   help
     18//config:     lpr sends files (or standard input) to a print spooling daemon.
     19//config:
     20//config:config LPQ
     21//config:   bool "lpq"
     22//config:   default y
     23//config:   help
     24//config:     lpq is a print spool queue examination and manipulation program.
     25
     26//applet:IF_LPQ(APPLET_ODDNAME(lpq, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpq))
     27//applet:IF_LPR(APPLET_ODDNAME(lpr, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpr))
     28
     29//kbuild:lib-$(CONFIG_LPR) += lpr.o
     30//kbuild:lib-$(CONFIG_LPQ) += lpr.o
    1431
    1532//usage:#define lpr_trivial_usage
Note: See TracChangeset for help on using the changeset viewer.