Hi I was attempting to build rpms from the gnucash cvs and had some problems with the Makefile.am in src/engine. It has a list of .h files under the noinst_HEADERS section which was incomplete. I added in the missing files to build the rpms and made a patch which I have attached below. Chris (wilddev)
Index: gnucash/src/engine/Makefile.am =================================================================== RCS file: /home/cvs/cvsroot/gnucash/src/engine/Makefile.am,v retrieving revision 1.28 diff -u -r1.28 Makefile.am --- gnucash/src/engine/Makefile.am 2001/02/25 07:54:34 1.28 +++ gnucash/src/engine/Makefile.am 2001/02/26 00:07:48 @@ -64,6 +64,7 @@ GroupP.h \ NetIO.h \ Query.h \ + Queue.h \ Scrub.h \ TransLog.h \ Transaction.h \ @@ -71,12 +72,15 @@ date.h \ gnc-common.h \ guid.h \ + guid_private.h \ io-gncbin.h \ io-gncxml.h \ + io-gncxml-p.h \ md5.h \ kvp_frame.h \ gnc-associate-account.h \ gnc-book.h \ + gnc-book-p.h \ gnc-commodity.h \ gnc-engine.h \ gnc-engine-util.h \ @@ -84,6 +88,7 @@ gnc-event-p.h \ gnc-numeric.h \ gnc-pricedb.h \ + gnc-pricedb-p.h \ gnc-xml-helper.h \ gnc-xml.h \ sixtp-dom-generators.h \
