From 75bb647f340251d24910b1ed00712673a1e55eae Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 5 Mar 2008 12:28:22 -0800 Subject: [PATCH] configure.ac hack --- configure.ac | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/configure.ac b/configure.ac index 63a57ed63647f..5245351f64426 100644 --- a/configure.ac +++ b/configure.ac @@ -1,12 +1,25 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +# Autoconf AC_PREREQ(2.59) AC_INIT([Ceph distributed file system], [.1], [Sage Weil ], [ceph]) + +# Environment +AC_CANONICAL_HOST +AC_CANONICAL_TARGET + +# Automake AM_INIT_AUTOMAKE(ceph, 0.1) +# Platform +case "${target_os}" in +darwin*) + AC_DEFINE([DARWIN], [1], [Define if darwin/osx]) +esac + # Checks for programs. AC_PROG_CXX AC_PROG_CC -- 2.39.5