summaryrefslogtreecommitdiff
path: root/print/cups/patches/patch-ao
blob: a9e72c490ac6c64b7fb1ddf54f25d877bf9eedc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
$NetBSD: patch-ao,v 1.11 2010/05/21 10:05:21 sbd Exp $

Add '--with-manext' configure option.

--- config-scripts/cups-manpages.m4.orig	2009-01-12 19:17:09.000000000 +0000
+++ config-scripts/cups-manpages.m4
@@ -13,6 +13,8 @@ dnl   which should have been included wi
 dnl   file is missing or damaged, see the license at "http://www.cups.org/".
 dnl
 
+AC_ARG_WITH(manext, [  --with-manext           set man page extension style (bsd,irix,sysv,none)],manext="$withval",manext="")
+ 
 dnl Fix "mandir" variable...
 if test "$mandir" = "\${datarootdir}/man" -a "$prefix" = "/"; then
 	# New GNU "standards" break previous ones, so make sure we use
@@ -50,8 +52,33 @@ AC_SUBST(AMANDIR)
 AC_SUBST(PMANDIR)
 
 dnl Setup manpage extensions...
-case "$uname" in
-	IRIX*)
+if test x$manext = x; then
+	case "$uname" in
+		*BSD* | DragonFly*)
+			# *BSD and Darwin (MacOS X)
+			manext=bsd
+			;;
+		IRIX*)
+			# SGI IRIX
+			manext=irix
+			;;
+		SunOS* | HP-UX*)
+			# Solaris and HP-UX
+			manext=sysv
+			;;
+		Linux* | GNU* | Darwin*)
+			# Linux and GNU Hurd
+			manext=linux
+			;;
+		*)
+			# All others
+			manext=none
+			;;
+	esac
+fi
+
+case "$manext" in
+	irix)
 		# SGI IRIX
 		MAN1EXT=1
 		MAN5EXT=5
@@ -59,7 +86,7 @@ case "$uname" in
 		MAN8EXT=1m
 		MAN8DIR=1
 		;;
-	SunOS* | HP-UX*)
+	sysv)
 		# Solaris and HP-UX
 		MAN1EXT=1
 		MAN5EXT=5
@@ -67,7 +94,7 @@ case "$uname" in
 		MAN8EXT=1m
 		MAN8DIR=1m
 		;;
-	Linux* | GNU* | Darwin*)
+	linux)
 		# Linux, GNU Hurd, and Mac OS X
 		MAN1EXT=1.gz
 		MAN5EXT=5.gz
@@ -75,7 +102,7 @@ case "$uname" in
 		MAN8EXT=8.gz
 		MAN8DIR=8
 		;;
-	*)
+	none|*)
 		# All others
 		MAN1EXT=1
 		MAN5EXT=5