r17232 - gnucash/branches/gda-dev2/src - Convert sql access from a module to a library.

Phil Longstaff plongstaff at cvs.gnucash.org
Sat Jun 14 10:05:02 EDT 2008


Author: plongstaff
Date: 2008-06-14 10:05:01 -0400 (Sat, 14 Jun 2008)
New Revision: 17232
Trac: http://svn.gnucash.org/trac/changeset/17232

Modified:
   gnucash/branches/gda-dev2/src/backend/dbi/Makefile.am
   gnucash/branches/gda-dev2/src/backend/gda/Makefile.am
   gnucash/branches/gda-dev2/src/backend/sql/Makefile.am
   gnucash/branches/gda-dev2/src/business/business-core/sql/Makefile.am
Log:
Convert sql access from a module to a library.



Modified: gnucash/branches/gda-dev2/src/backend/dbi/Makefile.am
===================================================================
--- gnucash/branches/gda-dev2/src/backend/dbi/Makefile.am	2008-06-14 02:01:58 UTC (rev 17231)
+++ gnucash/branches/gda-dev2/src/backend/dbi/Makefile.am	2008-06-14 14:05:01 UTC (rev 17232)
@@ -26,7 +26,7 @@
 libgncmod_backend_dbi_la_LDFLAGS = -module -avoid-version
 libgncmod_backend_dbi_la_LIBADD = \
    ${GLIB_LIBS} ${GCONF_LIBS} \
-   ${top_builddir}/src/backend/sql/libgncmod-backend-sql.la \
+   ${top_builddir}/src/backend/sql/libgnc-backend-sql.la \
    ${top_builddir}/src/engine/libgncmod-engine.la \
    ${LIBDBI_LIBS} \
    ${QOF_LIBS}

Modified: gnucash/branches/gda-dev2/src/backend/gda/Makefile.am
===================================================================
--- gnucash/branches/gda-dev2/src/backend/gda/Makefile.am	2008-06-14 02:01:58 UTC (rev 17231)
+++ gnucash/branches/gda-dev2/src/backend/gda/Makefile.am	2008-06-14 14:05:01 UTC (rev 17232)
@@ -27,7 +27,7 @@
 libgncmod_backend_gda_la_LDFLAGS = -module -avoid-version
 libgncmod_backend_gda_la_LIBADD = \
    ${GLIB_LIBS} ${GCONF_LIBS} \
-   ${top_builddir}/src/engine/libgncmod-engine.la \
+   ${top_builddir}/src/engine/libgnc-engine.la \
    ${top_builddir}/src/backend/sql/libgncmod-backend-sql.la \
    ${LIBGDA_LIBS} \
    ${QOF_LIBS}

Modified: gnucash/branches/gda-dev2/src/backend/sql/Makefile.am
===================================================================
--- gnucash/branches/gda-dev2/src/backend/sql/Makefile.am	2008-06-14 02:01:58 UTC (rev 17231)
+++ gnucash/branches/gda-dev2/src/backend/sql/Makefile.am	2008-06-14 14:05:01 UTC (rev 17232)
@@ -1,9 +1,8 @@
 SUBDIRS = . test
 
 # Now a shared library AND a GModule
-pkglib_LTLIBRARIES = libgncmod-backend-sql.la
+lib_LTLIBRARIES = libgnc-backend-sql.la
 
-
 AM_CFLAGS = \
   -I.. -I../.. \
   -DLOCALE_DIR=\""$(datadir)/locale"\" \
@@ -17,7 +16,7 @@
   ${GCONF_CFLAGS} \
   ${WARN_CFLAGS}
 
-libgncmod_backend_sql_la_SOURCES = \
+libgnc_backend_sql_la_SOURCES = \
   gnc-backend-sql.c \
   gnc-account-sql.c \
   gnc-book-sql.c \
@@ -43,8 +42,7 @@
   gnc-slots-sql.h \
   gnc-transaction-sql.h
 
-libgncmod_backend_sql_la_LDFLAGS = -module -avoid-version
-libgncmod_backend_sql_la_LIBADD = \
+libgnc_backend_sql_la_LIBADD = \
    ${GLIB_LIBS} ${GCONF_LIBS} \
    ${top_builddir}/src/engine/libgncmod-engine.la \
    ${QOF_LIBS}

Modified: gnucash/branches/gda-dev2/src/business/business-core/sql/Makefile.am
===================================================================
--- gnucash/branches/gda-dev2/src/business/business-core/sql/Makefile.am	2008-06-14 02:01:58 UTC (rev 17231)
+++ gnucash/branches/gda-dev2/src/business/business-core/sql/Makefile.am	2008-06-14 14:05:01 UTC (rev 17232)
@@ -44,7 +44,7 @@
 
 libgncmod_business_backend_sql_la_LIBADD = \
   ${top_builddir}/src/business/business-core/libgncmod-business-core.la \
-  ${top_builddir}/src/backend/sql/libgncmod-backend-sql.la \
+  ${top_builddir}/src/backend/sql/libgnc-backend-sql.la \
   ${top_builddir}/src/engine/libgncmod-engine.la \
   ${top_builddir}/src/gnc-module/libgnc-module.la \
   ${QOF_LIBS} \



More information about the gnucash-changes mailing list