blob: 7160ae89504c6da98f424a68f1e1727891104d32 (
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
|
AC_DEFUN([PGSETUP_PACKAGING_INIT], [
AC_CACHE_CHECK(
[for oprating system (distribution)],
[pgsetup_cv_os_family], [
pgsetup_cv_os_family=
if test -r /etc/redhat-release; then
pgsetup_cv_os_family=redhat
fi
]
)
case $pgsetup_cv_os_family in
redhat)
AC_PATH_PROG([RPM], [rpm])
if test -z "$ac_cv_path_RPM"; then
AC_MSG_ERROR("can not find RPM package manager")
fi
;;
*)
AC_MSG_ERROR([rpm distro only ATM (todo)])
;;
esac
])
# PGSETUP_SUBST_REQ(VARIABLE,DESCRIPTION)
# ---------------------------------------
# Make sure that the VARIABLE is mentioned in './configure --help' output and
# that it is not empty after processing this macro. Use the DESCRIPTION as a
# comment.
m4_define([PGSETUP_SUBST_REQ], [
AC_ARG_VAR([$1], [$2])
test -z "$[]$1" &&
AC_MSG_ERROR([the \$$1 variable is not set])
])
|