From 5e1dd23ad5ed2fe8b0a618a9f9e10eac1694fe2b Mon Sep 17 00:00:00 2001 From: tobigun Date: Tue, 9 Sep 2008 12:50:50 +0000 Subject: - 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 --- dists/autogen/m4/macosx_version.m4 | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 dists/autogen/m4/macosx_version.m4 (limited to 'dists/autogen/m4/macosx_version.m4') 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 -- cgit v1.2.3 From 4a876f4460098af21058ef610a8c97d974c62eab Mon Sep 17 00:00:00 2001 From: tobigun Date: Tue, 9 Sep 2008 13:14:48 +0000 Subject: configure update (svn:eol-style=native does not work here as the line-endings of the auto-generated file are not consistent) git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1353 b956fd51-792f-4845-bead-9b4dfca2ff2c --- dists/autogen/m4/macosx_version.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dists/autogen/m4/macosx_version.m4') diff --git a/dists/autogen/m4/macosx_version.m4 b/dists/autogen/m4/macosx_version.m4 index 508dc775..ddedd908 100644 --- a/dists/autogen/m4/macosx_version.m4 +++ b/dists/autogen/m4/macosx_version.m4 @@ -28,4 +28,4 @@ AC_DEFUN([AC_MACOSX_VERSION], DARWIN_VERSION=`uname -r | cut -f1 -d.` AC_MSG_RESULT(@<:@$DARWIN_VERSION@:>@) AC_SUBST(DARWIN_VERSION) -]) \ No newline at end of file +]) -- cgit v1.2.3