Changeset 311803 in git
- Timestamp:
- Aug 24, 2011, 12:01:52 AM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 06aafe1435abc46caaf98845d6df8e3da8ade1f1
- Parents:
- 72ebdb01e4821ac45cbf1e8065cb15515ef1b391
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-24 00:01:52+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:26+01:00
- Location:
- factory
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/Makefile.am
r72ebdb r311803 246 246 ${srcdir}/bin/makeheader $< $@ 247 247 248 BUILT_SOURCES = cplusplus.h factory.h factoryconf.h 248 BUILT_SOURCES = cplusplus.h factory.h factoryconf.h readcf.cc 249 249 250 250 … … 307 307 examples/factorize.cc examples/gcd.cc \ 308 308 bin/folding.el bin/fold-docu.el \ 309 bin/makeheader bin/gen-readcf readcf.cc$(gftables_DATA)310 311 CLEANFILES = factory.h factoryconf.h cplusplus.h 309 bin/makeheader bin/gen-readcf $(gftables_DATA) 310 311 CLEANFILES = factory.h factoryconf.h cplusplus.h readcf.cc 312 312 313 313 -
factory/factory.template
r72ebdb r311803 22 22 //}}} 23 23 24 //#include <factory/factoryconf.h>24 #include <factory/factoryconf.h> 25 25 26 26 #ifndef NOSTREAMIO -
factory/readcf.yy
r72ebdb r311803 3 3 4 4 %{ 5 #ifndef NOSTREAMIO 5 6 #include "config.h" 7 #include "factoryconf.h" 8 9 #if (!defined(NOSTREAMIO)) && (!defined(SINGULAR)) 10 6 11 7 12 #if defined(WINNT) && ! defined(__GNUC__) 8 # include <malloc.h>9 # include <memory.h>10 # define alloca _alloca13 # include <malloc.h> 14 # include <memory.h> 15 # define alloca _alloca 11 16 #endif 12 17 … … 15 20 16 21 #include <ctype.h> 22 17 23 #ifdef HAVE_IOSTREAM 18 # include <iostream>19 # define ISTREAM std::istream20 # define CERR std::cerr24 # include <iostream> 25 # define ISTREAM std::istream 26 # define CERR std::cerr 21 27 #elif defined(HAVE_IOSTREAM_H) 22 # include <iostream.h>23 # define ISTREAM istream24 # define CERR cerr28 # include <iostream.h> 29 # define ISTREAM istream 30 # define CERR cerr 25 31 #endif 26 32 … … 35 41 36 42 #ifndef BISONPP 37 # define YYSTYPE ParseUtil38 #else 39 # define YY_parse_USE_GOTO 140 # define YY_parse_STYPE ParseUtil43 # define YYSTYPE ParseUtil 44 #else 45 # define YY_parse_USE_GOTO 1 46 # define YY_parse_STYPE ParseUtil 41 47 #endif 42 48 … … 213 219 214 220 215 #endif 216 / / #ifndef NOSTREAMIO221 #endif 222 /* #ifndef SINGULAR && ifndef NOSTREAMIO */
Note: See TracChangeset
for help on using the changeset viewer.