cmtools is a collection of utilities for generating and processing machine readable musical scores based on MusicXML, MIDI and other data files.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

os_type.m4 328B

1234567891011
  1. AC_DEFUN([AX_FUNC_OS_TYPE],
  2. [AC_CACHE_CHECK([operating system type],
  3. [ax_cv_os_type],
  4. [ax_cv_os_type=`uname`])
  5. if test x"$ax_cv_os_type" = xLinux; then
  6. AC_DEFINE([OS_LINUX], 1,[Operating system is Linux.])
  7. fi
  8. if test x"$ax_cv_os_type" = xDarwin; then
  9. AC_DEFINE([OS_OSX], 1,[Operating system is Darwin.])
  10. fi]) # AX_FUNC_OS_TYPE