From patchwork Wed Oct 10 21:25:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Noah Watkins X-Patchwork-Id: 1575811 Return-Path: X-Original-To: patchwork-ceph-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 1F2EB40135 for ; Wed, 10 Oct 2012 21:25:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755903Ab2JJVZ5 (ORCPT ); Wed, 10 Oct 2012 17:25:57 -0400 Received: from mail-ie0-f174.google.com ([209.85.223.174]:52406 "EHLO mail-ie0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755538Ab2JJVZ5 convert rfc822-to-8bit (ORCPT ); Wed, 10 Oct 2012 17:25:57 -0400 Received: by mail-ie0-f174.google.com with SMTP id k13so1812826iea.19 for ; Wed, 10 Oct 2012 14:25:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ucsc.edu; s=ucsc-google; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=bcboNk3e1Ty+/HmGbuw6zlAB2p00oR7zQkbkqMWrm64=; b=f9pwDeV5h0yNaZ9bbtH2tbhGZi9NPQkedm2GKkLvzYWIqdpXELtEPn8O+kpdIayGBN Bm8KVeUYnNDFTkQI8F9Fyjbt6sDbnZ+I8u7G9mC3oPTShaMyCXIRQ6A+/xMLpIp1y5ve 5Tvkj+GKX5OxqAidKt8jkVcM9mce3G2yMC7Nw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding:x-gm-message-state; bh=bcboNk3e1Ty+/HmGbuw6zlAB2p00oR7zQkbkqMWrm64=; b=kWbmGGj9OnUlojUjsSv42Og4jl/H0J4KIMUuXWK8fzimKLZ5u5M25osRkKkoYf31sv I1HroIq3gjisswgBVbFiOd9D6qS4Pt4vsKsbZqVvE0+Y6lhSwkaQv/knCKBzwv/nfsRr wTU7iK3nPoVdVFU1la82LN1l8obW6VbIQZJWGMsagIqgmD73R0shmoeKJ4Pb7DKTQQco wuWidQNqp2XOCqyjU0j/TEgylKInpPeFJF91NNHej+6BlzztGJqqECVnfTPNcqvZ9SYh awUY7OLPK5uX7YPGKqbj5FOw7KXnXV2yi3R6IQTduyTC8nuL2OiqYvXwNNgS5BBEAx/n 9/nw== MIME-Version: 1.0 Received: by 10.42.132.194 with SMTP id e2mr19651884ict.21.1349904356586; Wed, 10 Oct 2012 14:25:56 -0700 (PDT) Received: by 10.64.91.66 with HTTP; Wed, 10 Oct 2012 14:25:56 -0700 (PDT) Date: Wed, 10 Oct 2012 14:25:56 -0700 Message-ID: Subject: rgw_rest.cc build failure From: Noah Watkins To: ceph-devel X-Gm-Message-State: ALoCoQlecB/8wtpmTsOIGNC/fAiB2UcEZN0EpBGKRFlLJ2aHP6ec6TTDp8Pg4W03WZfb7uIii7hy Sender: ceph-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org This needed for latest master: to fix: CXX radosgw-rgw_rest.o rgw/rgw_rest.cc: In static member function ‘static int RESTArgs::get_uint64(req_state*, const string&, uint64_t, uint64_t*, bool*)’: rgw/rgw_rest.cc:326:15: error: ‘ULLONG_MAX’ was not declared in this scope rgw/rgw_rest.cc: In static member function ‘static int RESTArgs::get_int64(req_state*, const string&, int64_t, int64_t*, bool*)’: rgw/rgw_rest.cc:351:15: error: ‘LLONG_MAX’ was not declared in this scope - Noah Signed-off-by: Noah Watkins --- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/src/rgw/rgw_rest.cc b/src/rgw/rgw_rest.cc index 53bbeca..3612a9e 100644 --- a/src/rgw/rgw_rest.cc +++ b/src/rgw/rgw_rest.cc @@ -1,4 +1,5 @@ #include +#include #include "common/Formatter.h" #include "common/utf8.h"