Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bdd7ee949add70ccb545c2a28ad2f4d646898946)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bdd7ee949add70ccb545c2a28ad2f4d646898946)
  • Date: Sat, 22 Aug 2009 14:44:29 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

database/postgresql/BUILD | 8 +++++---
database/postgresql/HISTORY | 4 ++++
database/postgresql/INSTALL | 13 ++++++-------
3 files changed, 15 insertions(+), 10 deletions(-)

New commits:
commit bdd7ee949add70ccb545c2a28ad2f4d646898946
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

postgresql: correctly build/install extensions with no dependency of each
other

diff --git a/database/postgresql/BUILD b/database/postgresql/BUILD
index d6d5c80..b9cb5c0 100755
--- a/database/postgresql/BUILD
+++ b/database/postgresql/BUILD
@@ -8,10 +8,12 @@ default_build &&

if is_depends_enabled $SPELL openssl; then
cd contrib/pgcrypto &&
- make
+ make &&
+ cd ..
fi &&

if is_depends_enabled $SPELL libxml2; then
- cd ../xml2 &&
- make
+ cd contrib/xml2 &&
+ make &&
+ cd ..
fi
diff --git a/database/postgresql/HISTORY b/database/postgresql/HISTORY
index edca33c..dcc56c4 100644
--- a/database/postgresql/HISTORY
+++ b/database/postgresql/HISTORY
@@ -1,3 +1,7 @@
+2009-08-22 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: properly build extensions
+ * INSTALL: properly install extensions; don't install default log file
+
2009-08-04 Remko van der Vossen <wich AT sourcemage.org>
* CONFIGURE: updated wiki link
* DEPENDS: added zlib optional depends
diff --git a/database/postgresql/INSTALL b/database/postgresql/INSTALL
index 96fd735..4491f71 100755
--- a/database/postgresql/INSTALL
+++ b/database/postgresql/INSTALL
@@ -3,13 +3,12 @@ default_install &&

if is_depends_enabled $SPELL openssl; then
cd contrib/pgcrypto &&
- default_install
+ default_install &&
+ cd ..
fi &&

if is_depends_enabled $SPELL libxml2; then
- cd ../xml2 &&
- default_install
-fi &&
-
-touch "$INSTALL_ROOT/var/log/postgres" &&
-chown postgres:postgres "$INSTALL_ROOT/var/log/postgres"
+ cd contrib/xml2 &&
+ default_install &&
+ cd ..
+fi



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bdd7ee949add70ccb545c2a28ad2f4d646898946), Vlad Glagolev, 08/22/2009

Archive powered by MHonArc 2.6.24.

Top of Page