configure.in.min
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. dnl    This file is part of the KDE libraries/packages
  2. dnl    Copyright (C) 2001 Stephan Kulow (coolo@kde.org)
  3.  
  4. dnl    This file is free software; you can redistribute it and/or
  5. dnl    modify it under the terms of the GNU Library General Public
  6. dnl    License as published by the Free Software Foundation; either
  7. dnl    version 2 of the License, or (at your option) any later version.
  8.  
  9. dnl    This library is distributed in the hope that it will be useful,
  10. dnl    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. dnl    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. dnl    Library General Public License for more details.
  13.  
  14. dnl    You should have received a copy of the GNU Library General Public License
  15. dnl    along with this library; see the file COPYING.LIB.  If not, write to
  16. dnl    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  17. dnl    Boston, MA 02110-1301, USA.
  18. # Original Author was Kalle@kde.org
  19. # I lifted it in some mater. (Stephan Kulow)
  20. # I used much code from Janos Farkas
  21. dnl Process this file with autoconf to produce a configure script.
  22. AC_INIT(acinclude.m4) dnl a source file from your sub dir
  23. dnl This is so we can use kde-common
  24. AC_CONFIG_AUX_DIR(admin)
  25. dnl This ksh/zsh feature conflicts with `cd blah ; pwd`
  26. unset CDPATH
  27. dnl Checking host/target/build systems, for make, install etc.
  28. AC_CANONICAL_SYSTEM 
  29. dnl Perform program name transformation
  30. AC_ARG_PROGRAM
  31. dnl Automake doc recommends to do this only here. (Janos)
  32. AM_INIT_AUTOMAKE(@MODULENAME@, @VERSION@) dnl searches for some needed programs
  33. KDE_SET_PREFIX
  34. dnl generate the config header
  35. AM_CONFIG_HEADER(config.h) dnl at the distribution this done
  36. dnl Checks for programs.
  37. AC_CHECK_COMPILERS
  38. AC_ENABLE_SHARED(yes)
  39. AC_ENABLE_STATIC(no)
  40. KDE_PROG_LIBTOOL
  41. dnl for NLS support. Call them in this order!
  42. dnl WITH_NLS is for the po files
  43. AM_KDE_WITH_NLS
  44. dnl KDE_USE_QT
  45. AC_PATH_KDE