Changeset 3a4bda in git


Ignore:
Timestamp:
Mar 25, 2010, 3:59:46 PM (13 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
Children:
8dff4e49d0ef118183e25bfaa62ce600a66f2ae7
Parents:
ebcfee32a6e13565d1f41295e1f0e2eb13a96e9c
git-author:
Hans Schönemann <hannes@mathematik.uni-kl.de>2010-03-25 15:59:46+01:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:35:58+01:00
Message:
first version of liboutput.a
Files:
5 added
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • .gitignore

    rebcfee3 r3a4bda  
    22*.dd
    33*.[oa]
     4*.o_ndebug
    45depend
    56Makefile
     
    89config.log
    910stamp-h
     11ix86-Linux/*
     12omalloc/omTables
     13omalloc/omTables.h
     14omalloc/omTables.inc
     15omalloc/omalloc.h
    1016trunk/MP/MP/MP_Config.h
    1117trunk/Singular/mod2.h
     
    1420trunk/doc/version.texi
    1521trunk/factory/GNUmakefile
    16 trunk/factory/config.h
     22config.h
    1723trunk/factory/ftest/GNUmakefile
    1824trunk/kernel/mod2.h
  • output/dError.c

    rebcfee3 r3a4bda  
    1313#include <stdarg.h>
    1414#include <stdio.h>
    15 #include <kernel/mod2.h>
    16 #include <Singular/distrib.h>
     15#include "config.h"
     16//#include "distrib.h": for MAKE_DISTRIBUTION
     17#ifdef p_Procs_Static
     18#include "kversion.h"
     19#endif
    1720#ifdef HAVE_CONFIG_H
    1821#include <omalloc/omalloc.h>
     
    2225extern "C"
    2326{
     27#endif
     28
     29#ifndef MAKE_DISTRIBUTION
     30// dummy procedure for setting a breakpoint
     31// within the debugger
     32void dErrorBreak()
     33{}
    2434#endif
    2535
     
    4959
    5060
    51 #ifndef MAKE_DISTRIBUTION
    52 // dummy procedure for setting a breakpoint
    53 // within the debugger
    54 void dErrorBreak()
    55 {}
    56 #endif
    57 
    5861#ifdef __cplusplus
    5962}
  • output/output.h

    rebcfee3 r3a4bda  
    1010#include <stdio.h>
    1111#include <string.h>
     12
     13#if (SIZEOF_LONG == 8)
     14typedef int BOOLEAN;
     15/* testet on x86_64, gcc 3.4.6: 2 % */
     16/* testet on IA64, gcc 3.4.6: 1 % */
     17#else
     18/* testet on athlon, gcc 2.95.4: 1 % */
     19typedef short BOOLEAN;
     20#endif
     21
     22#ifndef FALSE
     23#define FALSE       0
     24#endif
     25
     26#ifndef TRUE
     27#define TRUE        1
     28#endif
     29
     30
    1231
    1332extern char*  feErrors;
Note: See TracChangeset for help on using the changeset viewer.