configure.in
上传用户:shtangtang
上传日期:2007-01-04
资源大小:167k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. dnl without this order in this file, autoconf will not work!
  2. dnl the argument is a source file out of your sources. But
  3. dnl acinclude.m4 makes the job for all programs ;-)
  4. AC_INIT(acinclude.m4)
  5. dnl without this order in this file, automake will be confused!
  6. dnl the argument 
  7. AM_CONFIG_HEADER(config.h)
  8. dnl insert here your program name and version number
  9. AC_PROG_CC
  10. AC_CANONICAL_SYSTEM
  11. AC_ARG_PROGRAM
  12. AM_INIT_AUTOMAKE(threads,2.0.0)
  13. save_ifs="${IFS=     }";IFS='.';
  14. set dummy [$VERSION]
  15. LT_CURRENT=`expr $2 + $3`
  16. LT_REVISION=$4
  17. LT_AGE=$3
  18. IFS=$save_ifs
  19. AC_SUBST(LT_CURRENT)
  20. AC_SUBST(LT_REVISION)
  21. AC_SUBST(LT_AGE)
  22. VERSION=[$2.$3]
  23. AC_SUBST(VERSION)
  24. AM_ENABLE_SHARED
  25. dnl AC_PREFIX_DEFAULT(${THREADS:-/usr/local/})
  26. AC_CHECK_COMPILERS
  27. KDE_PROG_LIBTOOL
  28. AC_REQUIRE([AC_CHECK_RPATH])
  29. AC_REQUIRE([AC_CHECK_BOOL])
  30. AC_SUBST(all_includes)
  31. AC_SUBST(all_libraries)
  32. dnl AC_PATH_KDB
  33. dnl in this space add everything you want to check for
  34. dnl examples are specific headers, libraries, etc.
  35. dnl everything to compile and run a KDE program is already checked
  36. dnl add here all your Makefiles. This are created by configure
  37. AC_OUTPUT(Makefile src/Makefile doc/Makefile man/Makefile examples/Makefile)