From patchwork Tue Mar 17 20:34:56 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Seiderer X-Patchwork-Id: 451142 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 9518F1400EA for ; Wed, 18 Mar 2015 07:35:05 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B5D819192C; Tue, 17 Mar 2015 20:35:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZEFRDbd+g0aW; Tue, 17 Mar 2015 20:35:03 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 447679190B; Tue, 17 Mar 2015 20:35:03 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 043DE1C1F8C for ; Tue, 17 Mar 2015 20:35:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F2014918EA for ; Tue, 17 Mar 2015 20:35:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sdMZ+WZwU87P for ; Tue, 17 Mar 2015 20:35:01 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mout.gmx.net (mout.gmx.net [212.227.17.21]) by whitealder.osuosl.org (Postfix) with ESMTPS id 200BC918DB for ; Tue, 17 Mar 2015 20:35:01 +0000 (UTC) Received: from linux.local ([94.216.60.39]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0MEccf-1YjHnE494z-00FgnI for ; Tue, 17 Mar 2015 21:34:58 +0100 From: Peter Seiderer To: buildroot@busybox.net Date: Tue, 17 Mar 2015 21:34:56 +0100 Message-Id: <1426624496-16217-1-git-send-email-ps.report@gmx.net> X-Mailer: git-send-email 2.1.4 X-Provags-ID: V03:K0:Zd9KfONY5xve3OxQKgu5fpMIwNWUZJkNVLc9Au0Q/GQDlarFqKo iQQxqpKpHBL1bTitNSw8HxWeeGMd2NoFoz2Z5iXF1F+uXYRwxPI9I+nynJxkaVPD7a42HrU YUehxY1WQ/Zut6B7j5ZZkPo0ZLmuk0LZ1GV2Lwmy0VU6u3d32AjpBO6m0vxtzmjDwTP2bYP aR5CbDD1mzyQur0dkX/Cg== X-UI-Out-Filterresults: notjunk:1; Subject: [Buildroot] [PATCH v1] postgresql: uses fork(), needs mmu X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes ([1]): postmaster/fork_process.o: In function `_fork_process': fork_process.c:(.text+0x22): undefined reference to `_fork' [1] http://autobuild.buildroot.org/results/c9c/c9c93156fe64e89f35627aa592c47d8c5181ed7d Signed-off-by: Peter Seiderer --- package/postgresql/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/postgresql/Config.in b/package/postgresql/Config.in index 519b2a1..4c53703 100644 --- a/package/postgresql/Config.in +++ b/package/postgresql/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_POSTGRESQL bool "postgresql" + depends on BR2_USE_MMU # fork() help PostgreSQL is a powerful, open source object-relational database system.