autogen.sh 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2002-2012 The Xfce development team. All rights reserved.
  4. #
  5. # This library is free software; you can redistribute it and/or modify it
  6. # under the terms of the GNU General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option)
  8. # any later version.
  9. #
  10. # This library is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. # more details.
  14. #
  15. # You should have received a copy of the GNU Lesser General Public
  16. # License along with this library; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. #
  19. # Written for Xfce by Benedikt Meurer <benny@xfce.org>.
  20. #
  21. (type xdt-autogen) >/dev/null 2>&1 || {
  22. cat >&2 <<EOF
  23. autogen.sh: You don't seem to have the Xfce development tools installed on
  24. your system, which are required to build this software.
  25. Please install the xfce4-dev-tools package first, it is available
  26. from http://www.xfce.org/.
  27. EOF
  28. exit 1
  29. }
  30. XDT_AUTOGEN_REQUIRED_VERSION="4.9.1" \
  31. exec xdt-autogen $@