Ignore:
Timestamp:
Apr 26, 2011, 10:24:03 AM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
6c084af83f830337d6cc5d88e05a66c74d9350f8
Parents:
52f218be00b6571557f2177e33ab01e695c1cd26
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-04-26 10:24:03+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:28+01:00
Message:
rSum: test for equal coeffs
mod_raw: simplified
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/templates/mod_raw.cc

    r52f218 r3dbe0bf  
    187187#define HAVE_ELF_SYSTEM
    188188#endif
    189    
    190    
    191 #if defined(ix86Mac_darwin)
    192 #define HAVE_ELF_SYSTEM
    193 #endif
    194 
    195 #if defined(x86_64Mac_darwin)
    196 #define HAVE_ELF_SYSTEM
    197 #endif
    198189
    199190#if defined(SunOS_5)
     
    201192#endif
    202193
    203 #if defined(__ELF__)
    204 #define HAVE_ELF_SYSTEM
    205 #endif
    206 
    207    
    208194#if defined(HAVE_ELF_SYSTEM)
    209195#include <dlfcn.h>
     196#define DL_IMPLEMENTED
    210197
    211198static void* kernel_handle = NULL;
     
    220207    Werror("module %s already loaded",filename);
    221208  return NULL;
    222 // alternative 
     209// alternative
    223210//    return(dlopen(filename, RTLD_NOW|RTLD_GLOBAL));
    224211}
     
    250237 *****************************************************************************/
    251238#if defined(HPUX_9) || defined(HPUX_10)
     239#define DL_IMPLEMENTED
    252240#include <dl.h>
    253241
     
    293281
    294282/*****************************************************************************
    295  * SECTION AIX-4                                                             *
    296  *****************************************************************************/
    297 #ifdef AIX_4
    298 #define DL_NOT_IMPLEMENTED
    299 #endif
    300 
    301 /*****************************************************************************
    302  * SECTION Sun3OS-4                                                          *
    303  *****************************************************************************/
    304 #ifdef Sun3OS_4
    305 #define DL_NOT_IMPLEMENTED
    306 #endif
    307 
    308 /*****************************************************************************
    309  * SECTION SunOS-4                                                         *
    310  *****************************************************************************/
    311 #if defined(SunOS_4)
    312 #define DL_NOT_IMPLEMENTED
    313 #endif
    314 
    315 /*****************************************************************************
    316283 * SECTION generic: dynamic madules not available
    317284 *****************************************************************************/
    318 #ifdef DL_NOT_IMPLEMEMENTED
     285#ifndef DL_IMPLEMENTED
    319286
    320287void *dynl_open(char *filename)
Note: See TracChangeset for help on using the changeset viewer.