Changeset bebd5a0 in git


Ignore:
Timestamp:
Sep 8, 2016, 12:50:54 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
8222d62826a4a1e61a9e22bfbb98e742f896d780
Parents:
e4ac9d386d815e4411fb4fcea3826b2c8d70fd37
Message:
simplified xalloc (removed omConfig.h)
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Singular/misc_ip.cc

    re4ac9d rbebd5a0  
    781781  StringAppend("Singular for %s version %s (%d, %d bit) %s #%s",
    782782               S_UNAME, VERSION, // SINGULAR_VERSION,
    783                SINGULAR_VERSION, SIZEOF_VOIDP*8,
     783               SINGULAR_VERSION, sizeof(void*)*8,
    784784#ifdef MAKE_DISTRIBUTION
    785785               VERSION_DATE, GIT_VERSION);
  • xalloc/Makefile.am

    re4ac9d rbebd5a0  
    2020
    2121CLEANFILES = $(BUILT_SOURCES)
    22 DISTCLEANFILES = omConfig.h
    2322
  • xalloc/configure.ac

    re4ac9d rbebd5a0  
    1111AC_CONFIG_AUX_DIR([../build-aux])
    1212AC_CONFIG_SRCDIR(dummy.c)
    13 AC_CONFIG_HEADER([_config.h])
     13#AC_CONFIG_HEADER([_config.h])
    1414
    1515AC_PROG_CC
     
    2626
    2727# Add pre'prefixed config
    28 AX_PREFIX_CONFIG_H([omConfig.h],[],[_config.h])
     28#AX_PREFIX_CONFIG_H([omConfig.h],[],[_config.h])
    2929
    3030# SING_CHECK_SET_ARGS()
    3131
    32 AC_SUBST(VERSION)
     32#AC_SUBST(VERSION)
    3333
    3434CPPFLAGS="-I.. -I. $CPPFLAGS"
  • xalloc/omalloc.h

    re4ac9d rbebd5a0  
    99#include <stdlib.h>
    1010#include <string.h>
    11 #include <omalloc/omConfig.h>
    12 
    1311#ifdef __cplusplus
    1412extern "C" {
Note: See TracChangeset for help on using the changeset viewer.