Now install country-de.dat as country.dat; renaming the source can be done by

someone who is more experienced with CVS.
Default value for country.dat changed in isdnconf.c; also default zonefile
etc. changed from .gdbm to .cdb
This commit is contained in:
paul 2000-09-01 06:30:20 +00:00
parent 1f757c0739
commit 5e65c31f95
2 changed files with 18 additions and 6 deletions

View File

@ -1,4 +1,4 @@
## $Id: Makefile.in,v 1.180 2000/08/27 15:18:19 akool Exp $
## $Id: Makefile.in,v 1.181 2000/09/01 06:30:20 paul Exp $
##
## ISDN accounting for isdn4linux.
##
@ -19,6 +19,12 @@
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##
## $Log: Makefile.in,v $
## Revision 1.181 2000/09/01 06:30:20 paul
## Now install country-de.dat as country.dat; renaming the source can be done by
## someone who is more experienced with CVS.
## Default value for country.dat changed in isdnconf.c; also default zonefile
## etc. changed from .gdbm to .cdb
##
## Revision 1.180 2000/08/27 15:18:19 akool
## isdnlog-4.41
## - fix a fix within Change_Channel()
@ -1661,7 +1667,7 @@ install-data:
$(INSTALL_DATA) isdnlog/isdnformat.5 $(DESTDIR)$(MAN5DIR)/isdnformat$(MAN5EXT)
$(INSTALL_DATA) tools/isdnrate.1 $(DESTDIR)$(MAN1DIR)/isdnrate$(MAN1EXT)
$(INSTALL_DATA) tools/rate-files.5 $(DESTDIR)$(MAN5DIR)/rate-files$(MAN5EXT)
$(INSTALL_DATA) country-de.dat $(DESTDIR)$(DATADIR)
$(INSTALL_DATA) country-de.dat $(DESTDIR)$(DATADIR)/country.dat
$(INSTALL_DATA) rate-$(NATION).dat $(DESTDIR)$(DATADIR)
$(INSTALL_DATA) holiday-$(NATION).dat $(DESTDIR)$(DATADIR)
@for f in `ls zone-$(NATION)-*.{gdbm,db,cdb} tools/dest/dest.{gdbm,db,cdb} 2>/dev/null` ; do \

View File

@ -1,4 +1,4 @@
/* $Id: isdnconf.c,v 1.32 2000/02/20 19:03:08 akool Exp $
/* $Id: isdnconf.c,v 1.33 2000/09/01 06:30:20 paul Exp $
*
* ISDN accounting for isdn4linux. (Utilities)
*
@ -20,6 +20,12 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Log: isdnconf.c,v $
* Revision 1.33 2000/09/01 06:30:20 paul
* Now install country-de.dat as country.dat; renaming the source can be done by
* someone who is more experienced with CVS.
* Default value for country.dat changed in isdnconf.c; also default zonefile
* etc. changed from .gdbm to .cdb
*
* Revision 1.32 2000/02/20 19:03:08 akool
* isdnlog-4.12
* - ABC_LCR enhanced
@ -1101,11 +1107,11 @@ static int _readconfig(char *_myname)
callfile = NULL;
callfmt = NULL;
holifile = CONFIG_DATADIR"/holiday-"NATION".dat";
countryfile = CONFIG_DATADIR"/country-de.dat";
countryfile = CONFIG_DATADIR"/country.dat";
rateconf = CONFIG_I4LCONFDIR"/rate.conf";
ratefile = CONFIG_DATADIR"/rate-"NATION".dat";
zonefile = CONFIG_DATADIR"/zone-"NATION"-%s.gdbm";
destfile = CONFIG_DATADIR"/dest.gdbm";
zonefile = CONFIG_DATADIR"/zone-"NATION"-%s.cdb";
destfile = CONFIG_DATADIR"/dest.cdb";
lcdfile = NULL;
start_procs.infoargs = NULL;
start_procs.flags = 0;