Print this page
4118 libuuid should provide uuid_unparse_{upper,lower} functions
Reviewed by: Serghei Samsi <sscdvp@gmail.com>
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/man/man3uuid/Makefile
+++ new/usr/src/man/man3uuid/Makefile
1 1 #
2 2 # This file and its contents are supplied under the terms of the
3 3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 4 # You may only use this file in accordance with the terms of version
↓ open down ↓ |
4 lines elided |
↑ open up ↑ |
5 5 # 1.0 of the CDDL.
6 6 #
7 7 # A full copy of the text of the CDDL should have accompanied this
8 8 # source. A copy of the CDDL is also available via the Internet
9 9 # at http://www.illumos.org/license/CDDL.
10 10 #
11 11
12 12 #
13 13 # Copyright 2011, Richard Lowe
14 14 # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
15 +# Copyright 2014 Andrew Stormont.
15 16 #
16 17
17 18 include $(SRC)/Makefile.master
18 19
19 20 MANSECT= 3uuid
20 21
21 22 MANFILES= uuid_clear.3uuid
22 23
23 24 MANLINKS= uuid_compare.3uuid \
24 25 uuid_copy.3uuid \
25 26 uuid_generate.3uuid \
26 27 uuid_generate_random.3uuid \
27 28 uuid_generate_time.3uuid \
28 29 uuid_is_null.3uuid \
29 30 uuid_parse.3uuid \
30 31 uuid_time.3uuid \
31 - uuid_unparse.3uuid
32 + uuid_unparse.3uuid \
33 + uuid_unparse_lower.3uuid \
34 + uuid_unparse_upper.3uuid
32 35
33 36 uuid_compare.3uuid := LINKSRC = uuid_clear.3uuid
34 37 uuid_copy.3uuid := LINKSRC = uuid_clear.3uuid
35 38 uuid_generate.3uuid := LINKSRC = uuid_clear.3uuid
36 39 uuid_generate_random.3uuid := LINKSRC = uuid_clear.3uuid
37 40 uuid_generate_time.3uuid := LINKSRC = uuid_clear.3uuid
38 41 uuid_is_null.3uuid := LINKSRC = uuid_clear.3uuid
39 42 uuid_parse.3uuid := LINKSRC = uuid_clear.3uuid
40 43 uuid_time.3uuid := LINKSRC = uuid_clear.3uuid
41 44 uuid_unparse.3uuid := LINKSRC = uuid_clear.3uuid
45 +uuid_unparse_lower.3uuid := LINKSRC = uuid_clear.3uuid
46 +uuid_unparse_upper.3uuid := LINKSRC = uuid_clear.3uuid
42 47
43 48 .KEEP_STATE:
44 49
45 50 include $(SRC)/man/Makefile.man
46 51
47 52 install: $(ROOTMANFILES) $(ROOTMANLINKS)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX