summaryrefslogtreecommitdiff
path: root/gphoto-m4/gp-packaging.m4
blob: 6ea9e04720da34eca859268e3e333acef3c4c89b (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
AC_DEFUN([GPKG_CHECK_LINUX],
[
	# effective_target has to be determined in advance
	AC_REQUIRE([AC_NEED_BYTEORDER_H])

	is_linux=false
	case "$effective_target" in 
		*linux*)
			is_linux=true
			;;
	esac
	AM_CONDITIONAL([HAVE_LINUX], ["$is_linux"])

	# required for docdir
	# FIXME: Implicit dependency
	# AC_REQUIRE(GP_CHECK_DOC_DIR)

	AC_ARG_WITH([hotplug-doc-dir],
	[AS_HELP_STRING([--with-hotplug-doc-dir=PATH],
	[Where to install hotplug scripts as docs [default=autodetect]])])

	if "$is_linux"; then
		AC_MSG_CHECKING([for hotplug doc dir])
		if test "x${with_hotplug_doc_dir}" != "x"
		then # given as parameter
		    hotplugdocdir="${with_hotplug_doc_dir}"
		    AC_MSG_RESULT([${hotplugdocdir} (from parameter)])
		else # start at docdir
		    hotplugdocdir="${docdir}/linux-hotplug"
		    AC_MSG_RESULT([${hotplugdocdir} (default)])
		fi
	else
		hotplugdocdir=""
	fi

	AC_ARG_WITH([hotplug-usermap-dir],
	[AS_HELP_STRING([--with-hotplug-usermap-dir=PATH],
	[Where to install hotplug scripts as docs [default=autodetect]])])

	if "$is_linux"; then
		AC_MSG_CHECKING([for hotplug usermap dir])
		if test "x${with_hotplug_usermap_dir}" != "x"
		then # given as parameter
		    hotplugusermapdir="${with_hotplug_usermap_dir}"
		    AC_MSG_RESULT([${hotplugusermapdir} (from parameter)])
		else # start at docdir
		    hotplugusermapdir="${docdir}/linux-hotplug"
		    AC_MSG_RESULT([${hotplugusermapdir} (default)])
		fi
	else
		hotplugusermapdir=""
	fi

	# Let us hope that automake does not create "" directories
	# on non-Linux systems now.
	AC_SUBST([hotplugdocdir])
	AC_SUBST([hotplugusermapdir])
])