2003-08-14 02:14:27 +08:00
|
|
|
#!/bin/sh
|
2010-12-07 23:46:31 +08:00
|
|
|
|
2005-10-19 02:45:11 +08:00
|
|
|
(type xdt-autogen) >/dev/null 2>&1 || {
|
|
|
|
cat >&2 <<EOF
|
|
|
|
autogen.sh: You don't seem to have the Xfce development tools installed on
|
|
|
|
your system, which are required to build this software.
|
2010-12-07 23:46:31 +08:00
|
|
|
Please install the xfce4-dev-tools package first, available from
|
|
|
|
http://xfce.org/~benny/projects/xfce4-dev-tools/.
|
2005-10-19 02:45:11 +08:00
|
|
|
EOF
|
2003-08-14 02:14:27 +08:00
|
|
|
exit 1
|
2005-10-19 02:45:11 +08:00
|
|
|
}
|
2003-08-14 02:14:27 +08:00
|
|
|
|
2014-11-02 23:09:37 +08:00
|
|
|
XDT_AUTOGEN_REQUIRED_VERSION="4.7.0" \
|
2010-12-07 23:46:31 +08:00
|
|
|
xdt-autogen $@
|