X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:from:to:subject:date:in-reply-to :references:content-type:content-transfer-encoding:mime-version; q=dns; s=default; b=APFVkcL0YQtvMaBcqO5BrcX4tQ7Z5BcoisKGtZvwEwB RyqoXPwABWhO1glFg9T6ov1vikoWxINlN3n1B9h+PJQE6bqSiJPR8LDPMCL1c10L eql+GS3AcmESGBVPXX5muMdd8rEnUzhsTlcm/iD2Wvv6iRQy/pnF/kFbvlH3si5Q = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:from:to:subject:date:in-reply-to :references:content-type:content-transfer-encoding:mime-version; s=default; bh=ZW+8FDuJixABhcEhNWKQUiiyq8w=; b=mJY1qIVMO/I5zrm8o /+SC2qgV7hRijL5d4kbq0YX7aDbZzko2/SPP88Vxu0IZ9W/k0DSvubKTOcmSspQz sMK5ptPkHGulTVvfCS8EZC0VG2mAccfL4TpUkIuTWpoETWSsmWZCSq2xhBI10VQ/ Sr8A1YaXyoLK/6qNoUHVu+mJEY= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.3 required=5.0 tests=AWL,BAYES_40,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: dub0-omc4-s14.dub0.hotmail.com X-TMN: [TGnt8/vvi1znDUCPQ7Rk8sf9mAKQLpWA] Message-ID: From: To: marco atzeri , "cygwin AT cygwin DOT com" Subject: RE: 'pgplsh' on Cygwin Date: Thu, 24 Oct 2013 15:36:55 +0000 In-Reply-To: <52693A98.3080902@gmail.com> References: ,<52693A98 DOT 3080902 AT gmail DOT com> Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id r9OFb9tS009122 Hi   It is done with the usual:   ./configure make make install   Project is available here:   http://pgfoundry.org/projects/plsh/   The version I am working with is:   http://pgfoundry.org/frs/download.php/1534/pgplsh-1.3.tar.gz   The INSTALL is not too verbose, looks like standard build, works perfectly on FreeBSD.   Any help is welcome. Thanks.     Cheers Balazs   ---   INSTALL:   PL/sh Installation Instructions ===============================   You need to have PostgreSQL 7.4 or later, and you need to have the server include files installed.   To build and install PL/sh, use this procedure:   ./configure --prefix=YOUR_CHOICE make make install   The include files are found using the pg_config program that is included in the PostgreSQL installation.  To use a different PostgreSQL installation, point configure to a different pg_config like so:   ./configure ... PG_CONFIG=/else/where/pg_config   Note that generally server-side modules such as this one have to be recompiled for every major PostgreSQL version (that is, 7.4, 8.0, ...).   To declare the language in a database, use   psql -d DBNAME -f PREFIX/share/pgplsh/createlang_pgplsh.sql   with a server running.  To drop it, use "droplang plsh", or DROP FUNCTION plsh_handler(); DROP LANGUAGE plsh; if you want to do it manually.   If you checked out the source code from CVS, run "autoreconf -i" first to set up the build infrastructure. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple