Ignore:
Timestamp:
Apr 11, 2013, 9:31:35 AM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
8b23bf954014d0a95b8966d5bb7a4845c21d9da1
Parents:
dd9de08cf1acd4433f35d74d593d1ec792b0176b
Message:
fix: loading of gfanlib.so, removed HAVE_FANS
File:
1 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/callgfanlib/gfanlib.cc

    rdd9de0 r58b407  
    11#include <kernel/mod2.h>
    2 #ifdef HAVE_FANS
     2
    33#include <bbcone.h>
    44#include <bbfan.h>
    55#include <bbpolytope.h>
    66#include <gitfan.h>
     7#include"Singular/ipid.h"
    78
    89template class gfan::Vector<gfan::Integer>;
     
    1112template class gfan::Matrix<gfan::Rational>;
    1213
    13 extern "C" int mod_init(void* gfanlibsingular)
     14extern "C" int mod_init(SModulFunctions* p)
    1415{
    15   bbcone_setup();
    16   bbfan_setup();
    17   bbpolytope_setup();
    18   gitfan_setup();
     16  bbcone_setup(p);
     17  bbfan_setup(p);
     18  bbpolytope_setup(p);
     19  gitfan_setup(p);
    1920}
    20 #endif
Note: See TracChangeset for help on using the changeset viewer.