diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-09 12:50:50 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-09 12:50:50 +0000 |
commit | 5e1dd23ad5ed2fe8b0a618a9f9e10eac1694fe2b (patch) | |
tree | fb59afccbff16075ac39b00fe5d81340a2612741 /dists/autogen/m4/macosx_version.m4 | |
parent | f3e8cb5a09ada2c74292047f2fad4fd47a01b99a (diff) | |
download | usdx-5e1dd23ad5ed2fe8b0a618a9f9e10eac1694fe2b.tar.gz usdx-5e1dd23ad5ed2fe8b0a618a9f9e10eac1694fe2b.tar.xz usdx-5e1dd23ad5ed2fe8b0a618a9f9e10eac1694fe2b.zip |
- better conformance of Makefiles to GNU coding standards
- bindir/prefix, etc. can be changed anytime make is performed and is not hardcoded on configure time anymore
- paths are written to the intermediate paths.inc file (instead of config-xyz.inc)
- binary is not stripped anymore
- fpc.m4 rewrite
- additional options like heaptrace, range-checks
- noexecstack workaround
- some more changes
- configure.ac helper functions moved to ax_ectract_version.m4 and pkg_config_utils.m4
- some icons moved from artwork to icons
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1351 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | dists/autogen/m4/macosx_version.m4 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dists/autogen/m4/macosx_version.m4 b/dists/autogen/m4/macosx_version.m4 new file mode 100644 index 00000000..508dc775 --- /dev/null +++ b/dists/autogen/m4/macosx_version.m4 @@ -0,0 +1,31 @@ +# This file is part of UltraStar Deluxe +# Created by the UltraStar Deluxe Team + +# SYNOPSIS +# +# AC_MACOSX_VERSION +# +# DESCRIPTION +# +# Determines the Mac OS X and Darwin version. +# +# +----------+---------+ +# | Mac OS X | Darwin | +# +----------+---------+ +# | 10.4 | 8 | +# | 10.5 | 9 | +# +----------+---------+ + +AC_DEFUN([AC_MACOSX_VERSION], +[ + AC_MSG_CHECKING([for Mac OS X version]) + MACOSX_VERSION=`sw_vers -productVersion` + AX_EXTRACT_VERSION(MACOSX, $MACOSX_VERSION) + AC_MSG_RESULT(@<:@$MACOSX_VERSION@:>@) + AC_SUBST(MACOSX_VERSION) + + AC_MSG_CHECKING([for Darwin version]) + DARWIN_VERSION=`uname -r | cut -f1 -d.` + AC_MSG_RESULT(@<:@$DARWIN_VERSION@:>@) + AC_SUBST(DARWIN_VERSION) +])
\ No newline at end of file |