Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (7afa8d5ef0f324138b22f94f41f7e6e44a4e2798)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (7afa8d5ef0f324138b22f94f41f7e6e44a4e2798)
  • Date: Thu, 8 Sep 2011 08:53:48 -0500

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

database/fbexport/DEPENDS | 1 +
database/fbexport/DETAILS | 3 ++-
database/fbexport/HISTORY | 4 ++++
database/fbexport/Makefile | 12 ++++++------
4 files changed, 13 insertions(+), 7 deletions(-)

New commits:
commit 7afa8d5ef0f324138b22f94f41f7e6e44a4e2798
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

fbexport - adjust build and depends

diff --git a/database/fbexport/DEPENDS b/database/fbexport/DEPENDS
index 0148be7..90b9d4a 100755
--- a/database/fbexport/DEPENDS
+++ b/database/fbexport/DEPENDS
@@ -1,2 +1,3 @@
depends FIREBIRD &&
+depends ibpp &&
depends -sub CXX gcc
diff --git a/database/fbexport/DETAILS b/database/fbexport/DETAILS
index 0f983e2..ff52b57 100755
--- a/database/fbexport/DETAILS
+++ b/database/fbexport/DETAILS
@@ -9,8 +9,9 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
DOCS="README CHANGES *.html"
ENTERED=20040103
KEYWORDS="firebird database"
-SHORT="FBExport exports/imports data from/to Firebird database"
+SHORT="FBExport copy/export/import data from/to Firebird database"
cat << EOF
With FBExport, one can easily export/import data from/to Firebird
table into text file
+FBCopy - command-line tool to copy and compare data in Firebird databases.
EOF
diff --git a/database/fbexport/HISTORY b/database/fbexport/HISTORY
index dc66254..23308e8 100644
--- a/database/fbexport/HISTORY
+++ b/database/fbexport/HISTORY
@@ -1,4 +1,8 @@
2011-09-08 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: add ibpp
+ * Makefile: use system ibpp
+
+2011-09-08 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.90
* DEPENDS: firebird => FIREBIRD
* INSTALL: deleted
diff --git a/database/fbexport/Makefile b/database/fbexport/Makefile
index 41bb057..d909bb4 100644
--- a/database/fbexport/Makefile
+++ b/database/fbexport/Makefile
@@ -5,17 +5,17 @@ OBJECTS_FBE=fbexport/ParseArgs.o fbexport/FBExport.o
fbexport/cli-main.o
OBJECTS_FBC=fbcopy/args.o fbcopy/fbcopy.o fbcopy/TableDependency.o
fbcopy/main.o

# Compiler & linker flags
-COMPILE_FLAGS=-O3 -DIBPP_LINUX -DIBPP_GCC -Iibpp
-LINK_FLAGS=-pthread -L/opt/firebird/lib -lfbclient
+COMPILE_FLAGS=-O3 -DIBPP_LINUX -DIBPP_GCC
+LINK_FLAGS=-pthread -L/usr/lib -libpp -L/opt/firebird/lib -lfbclient


all: exe/fbcopy exe/fbexport

-exe/fbexport: $(OBJECTS_FBE) ibpp/all_in_one.o
- g++ $(LINK_FLAGS) ibpp/all_in_one.o $(OBJECTS_FBE) -oexe/fbexport
+exe/fbexport: $(OBJECTS_FBE)
+ g++ $(LINK_FLAGS) $(OBJECTS_FBE) -oexe/fbexport

-exe/fbcopy: $(OBJECTS_FBC) ibpp/all_in_one.o
- g++ $(LINK_FLAGS) ibpp/all_in_one.o $(OBJECTS_FBC) -oexe/fbcopy
+exe/fbcopy: $(OBJECTS_FBC)
+ g++ $(LINK_FLAGS) $(OBJECTS_FBC) -oexe/fbcopy


install:



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (7afa8d5ef0f324138b22f94f41f7e6e44a4e2798), Treeve Jelbert, 09/08/2011

Archive powered by MHonArc 2.6.24.

Top of Page