~drizzle-trunk/libdrizzle/jenkins-Libdrizzle-110

« back to all changes in this revision

Viewing changes to m4/ax_platform.m4

  • Committer: Continuous Integration
  • Date: 2013-05-12 22:57:40 UTC
  • mfrom: (122.1.1 libdrizzle-5.1)
  • Revision ID: ci@drizzle.org-20130512225740-n9n9673m65kb4ogf
Merge lp:~brianaker/libdrizzle/ddm4-update-may Build: jenkins-Libdrizzle-107

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# LICENSE
14
14
#
15
 
#   Copyright (c) 2012 Brian Aker <brian@tangent.org>
 
15
#   Copyright (c) 2012-2013 Brian Aker <brian@tangent.org>
16
16
#
17
17
#   Copying and distribution of this file, with or without modification, are
18
18
#   permitted in any medium without royalty provided the copyright notice
49
49
        AC_DEFINE([__APPLE_CC__],[1],[Workaround for bug in FreeBSD headers])],
50
50
        [*solaris*],[AC_DEFINE([TARGET_OS_SOLARIS],[1],[Whether we are building for Solaris])],
51
51
        [*darwin*],
52
 
        [TARGET_OSX="true"
53
 
        AC_DEFINE([TARGET_OS_OSX],[1],[Whether we build for OSX])],
 
52
        [TARGET_OSX="true"],
54
53
        [*linux*],
55
54
        [TARGET_LINUX="true"
56
55
        AC_DEFINE([TARGET_OS_LINUX],[1],[Whether we build for Linux])])
58
57
  AM_CONDITIONAL([BUILD_WIN32],[test "x${TARGET_WINDOWS}" = "xtrue"])
59
58
  AM_CONDITIONAL([TARGET_OSX],[test "x${TARGET_OSX}" = "xtrue"])
60
59
  AM_CONDITIONAL([TARGET_LINUX],[test "x${TARGET_LINUX}" = "xtrue"])
 
60
  AM_CONDITIONAL([TARGET_FREEBSD],[test "x${TARGET_OS_FREEBSD}" = "xtrue"])
61
61
  ])