Commit 6eb79ccc authored by pv's avatar pv

minor fixes

parent 0497757d
......@@ -2,7 +2,7 @@
Name: uniset
Version: 0.96
Release: eter8
Release: eter9
Summary: UniSet
License: GPL
Group: Development/C++
......
......@@ -192,6 +192,7 @@ AC_CONFIG_FILES([Makefile
extentions/MBTCPMaster/libUniSetMBTCPMaster.pc
extentions/LogicProcessor/Makefile
extentions/LogicProcessor/libUniSetLogicProcessor.pc
extentions/SMViewer/Makefile
extentions/SharedMemory/Makefile
extentions/SharedMemory/libUniSetSharedMemory.pc
extentions/SharedMemoryPlus/Makefile])
......
......@@ -23,7 +23,7 @@ IOControl::IOControl( UniSetTypes::ObjectId id, UniSetTypes::ObjectId icID,
SharedMemory* ic, int numcards ):
UniSetObject(id),
polltime(500),
cards(numcards),
cards(numcards+1),
noCards(true),
iomap(100),
maxItem(0),
......@@ -56,7 +56,7 @@ IOControl::IOControl( UniSetTypes::ObjectId id, UniSetTypes::ObjectId icID,
UniXML_iterator it(cnode);
noCards = true;
for( unsigned int i=0; i <cards.size(); i++ )
for( unsigned int i=0; i<cards.size(); i++ )
{
stringstream s1;
s1 << "--iodev" << i;
......
bin_PROGRAMS = @PACKAGE@-sm-tsviewer
@PACKAGE@_sm_tsviewer_LDADD = $(SIGC_LIBS) $(top_builddir)/lib/libUniSet.la \
bin_PROGRAMS = @PACKAGE@-smviewer
@PACKAGE@_smviewer_LDADD = $(SIGC_LIBS) $(top_builddir)/lib/libUniSet.la \
$(top_builddir)/extentions/lib/libUniSetExtentions.la
@PACKAGE@_sm_tsviewer_CPPFLAGS = $(SIGC_CFLAGS) -I$(top_builddir)/extentions/include
@PACKAGE@_sm_tsviewer_SOURCES = SMViewer.cc main.cc
@PACKAGE@_smviewer_CPPFLAGS = $(SIGC_CFLAGS) -I$(top_builddir)/extentions/include
@PACKAGE@_smviewer_SOURCES = SMViewer.cc main.cc
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment