Changeset d8431c in git
- Timestamp:
- Jul 9, 2010, 4:25:59 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 223fd46d004926e3316f9458ee7d3fb6487c90f6
- Parents:
- cddf288ee272711fee19a3c624112f582bc30981
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile.in
rcddf28 rd8431c 232 232 endif 233 233 234 all: kversion.hlibkernel.a libkernel_g.a mmalloc.o ${DL_LIBS} ${DL_LIBSG} ${OBJS2}234 all: libkernel.a libkernel_g.a mmalloc.o ${DL_LIBS} ${DL_LIBSG} ${OBJS2} 235 235 236 236 libkernel.a: ${OBJS} … … 239 239 240 240 p_Procs_Lib.o: p_Procs_Lib.inc 241 242 kversion.h: ${SOURCES} ${HEADERS} Makefile.in mod2.h.in243 echo "#define feVersionId0 " `date '+%Y%m%d%H'` >kversion.h244 241 245 242 # Hmm compiling with -fomit-frame-pointer resulted in access violation … … 320 317 321 318 distclean: clean 322 -rm -f *~ .\#* kversion.h319 -rm -f *~ .\#* 323 320 -rm -f mod2.h Makefile TAGS* tags config.status config.cache config.log 324 321 -
kernel/dError.c
rcddf28 rd8431c 15 15 #include "mod2.h" 16 16 #include "../Singular/distrib.h" 17 #ifdef p_Procs_Static18 #include "kversion.h"19 #endif20 17 #ifdef HAVE_CONFIG_H 21 18 #include "omalloc.h" 22 #endif23 #ifdef MAKE_DISTRIBUTION24 #include "kversion.h"25 19 #endif 26 20 … … 48 42 fprintf(stderr, "\n// !!! YOU HAVE FOUND A BUG IN SINGULAR."); 49 43 fprintf(stderr, "// !!! Please, email the following output to singular@mathematik.uni-kl.de"); 50 fprintf(stderr, "// !!! Singular Version: " S_UNAME S_VERSION1 " (%d)\n", 51 feVersionId0); 44 fprintf(stderr, "// !!! Singular Version: " S_UNAME S_VERSION1 "\n"); 52 45 vfprintf(stderr, fmt, ap); 53 46 #endif -
kernel/misc.cc
rcddf28 rd8431c 25 25 #include "ring.h" 26 26 #include "p_Procs.h" 27 #include "kversion.h"28 27 29 28 #define SI_DONT_HAVE_GLOBAL_VARS
Note: See TracChangeset
for help on using the changeset viewer.