mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
DtMmdb: install spec files to datadir.
This commit is contained in:
parent
0007043d25
commit
38eb7b43d3
5 changed files with 13 additions and 9 deletions
|
@ -1,5 +1,8 @@
|
||||||
MAINTAINERCLEANFILES = Makefile.in
|
MAINTAINERCLEANFILES = Makefile.in
|
||||||
|
|
||||||
|
specdir = $(pkgdatadir)/DtMmdb
|
||||||
|
spec_DATA = hardcopy.feature.spec online.feature.spec
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libStyleSheet.la
|
noinst_LTLIBRARIES = libStyleSheet.la
|
||||||
|
|
||||||
libStyleSheet_la_CXXFLAGS = -DEXPAND_TEMPLATES -DCDE_NEXT -I..
|
libStyleSheet_la_CXXFLAGS = -DEXPAND_TEMPLATES -DCDE_NEXT -I..
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
infolibdir = ${prefix}/infolib
|
|
||||||
|
|
||||||
MAINTAINERCLEANFILES = Makefile.in
|
MAINTAINERCLEANFILES = Makefile.in
|
||||||
|
|
||||||
|
specdir = $(pkgdatadir)/DtMmdb
|
||||||
|
spec_DATA = mmdb.infolib.spec
|
||||||
|
|
||||||
noinst_LTLIBRARIES = liboliasdb.la
|
noinst_LTLIBRARIES = liboliasdb.la
|
||||||
|
|
||||||
liboliasdb_la_CXXFLAGS = -DNO_DB_LOCK -I..
|
liboliasdb_la_CXXFLAGS = -DNO_DB_LOCK -I..
|
||||||
|
|
|
@ -30,14 +30,14 @@ store page_store:
|
||||||
cached_pages=50:
|
cached_pages=50:
|
||||||
nm=$.dbd:
|
nm=$.dbd:
|
||||||
mode=r:
|
mode=r:
|
||||||
byte_order=big_endian
|
endianness=big_endian
|
||||||
|
|
||||||
store page_store:
|
store page_store:
|
||||||
page_sz=8192:
|
page_sz=8192:
|
||||||
cached_pages=50:
|
cached_pages=50:
|
||||||
nm=$.dbi:
|
nm=$.dbi:
|
||||||
mode=r:
|
mode=r:
|
||||||
byte_order=big_endian
|
endianness=big_endian
|
||||||
|
|
||||||
inv inv: nm=$.node.inv:store_nm=$.dbi
|
inv inv: nm=$.node.inv:store_nm=$.dbi
|
||||||
inv inv: nm=$.graphic.inv:store_nm=$.dbi
|
inv inv: nm=$.graphic.inv:store_nm=$.dbi
|
||||||
|
|
|
@ -169,11 +169,11 @@ ostream& store_desc::asciiOut(ostream& out, Boolean last)
|
||||||
desc::asciiOut(out, false);
|
desc::asciiOut(out, false);
|
||||||
char* mode = mode_str; desc_print(out, mode);
|
char* mode = mode_str; desc_print(out, mode);
|
||||||
|
|
||||||
char* byte_order = order_str;
|
char* endianness = order_str;
|
||||||
if ( last == true )
|
if ( last == true )
|
||||||
desc_print_end(out, byte_order);
|
desc_print_end(out, endianness);
|
||||||
else
|
else
|
||||||
desc_print(out, byte_order);
|
desc_print(out, endianness);
|
||||||
|
|
||||||
if ( ! out )
|
if ( ! out )
|
||||||
throw(stringException("store_desc::asciiOut() failed"));
|
throw(stringException("store_desc::asciiOut() failed"));
|
||||||
|
|
|
@ -149,8 +149,8 @@ int linecount = 1;
|
||||||
return(PAGE_SZ);
|
return(PAGE_SZ);
|
||||||
}
|
}
|
||||||
|
|
||||||
"byte_order" {
|
"endianness" {
|
||||||
return(BYTE_ORDER);
|
return(ENDIANNESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
"cached_pages" {
|
"cached_pages" {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue