Changeset ef6f95 in git
- Timestamp:
- Aug 25, 2011, 6:48:28 PM (12 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- d663f223df8d3d18b22216b8d1384e28c7e8f6aa
- Parents:
- 8aa03b2badd649c49b82f40c89165d11cee9fc4c
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-25 18:48:28+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:29+01:00
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/cntrlc.cc
r8aa03b ref6f95 11 11 #define _XOPEN_SOURCE_EXTENDED 12 12 #endif /* MP3-Y2 0.022UF */ 13 13 14 #include <stdio.h> 14 15 #include <stddef.h> … … 18 19 #include <sys/types.h> 19 20 #include <sys/wait.h> 21 20 22 #include <kernel/mod2.h> 21 23 #include <omalloc/omalloc.h> -
Singular/libsingular.h
r8aa03b ref6f95 1 #ifndef SINGULAR__H2 #define SINGULAR__H1 #ifndef LIBSINGULAR__H 2 #define LIBSINGULAR__H 3 3 4 #include <math.h> 4 #include <math.h> // Why this? 5 /* 6 // TODO: correct these includes!!! 5 7 #include <singular/mod2.h> 6 8 #include <singular/structs.h> … … 29 31 #include <singular/attrib.h> 30 32 #include <singular/options.h> 33 */ 31 34 32 35 void siInit(char *); 33 36 34 37 /* we need this function in Sage*/ 35 number nr2mMapZp(number from); 38 number nr2mMapZp(number from); // TODO: replace with something else... 36 39 37 #endif //SINGULAR__H38 40 41 #endif // #ifndef LIBSINGULAR__H 42 -
Singular/makefile
r8aa03b ref6f95 53 53 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 54 54 CPPFLAGS = -I${srcdir} -I.. -I${includedir} ${LIBPOLYS_INCLUDES} ${PYTHON_INCLUDES} 55 DEFS = -DNDEBUG -DOM_NDEBUG -DHAVE_SINGULAR55 DEFS = -DNDEBUG -DOM_NDEBUG -DLIBSINGULAR 56 56 LDFLAGS = -L${srcdir}/lib 57 57 LD_DYN_FLAGS = -ldl -rdynamic … … 300 300 CCM = gcc -MM -MG -DGENERATE_DEPEND 301 301 302 DEFSG = -DHAVE_SINGULAR302 DEFSG = -DLIBSINGULAR 303 303 304 304 CFLAGSG = -Wall ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS}
Note: See TracChangeset
for help on using the changeset viewer.