Changeset 1a1f34b in git
- Timestamp:
- Oct 14, 2015, 3:37:33 PM (8 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- a311b308796b46b4d4f62c4adfb1226432365f62
- Parents:
- 20a02439b361225625d282efe4ba0927de9c71cc
- Files:
-
- 20 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r20a0243 r1a1f34b 64 64 /omalloc/omConfig.h.in 65 65 /omalloc/omExternalConfig.h 66 /omalloc/omlimits.h67 66 /omalloc/omTables 68 67 /omalloc/omTables.dSYM/* -
Makefile.am
r20a0243 r1a1f34b 10 10 dox emacs redhat desktop 11 11 12 EXTRA_DIST = README README.md README.pkg autogen.sh git-version-gen doxy redhat/singular.spec.in redhat/singular.spec12 EXTRA_DIST = README README.md README.pkg autogen.sh git-version-gen doxy redhat/singular.spec.in GPL2 GPL3 13 13 14 14 bin_SCRIPTS = libsingular-config -
Singular/Makefile.am
r20a0243 r1a1f34b 207 207 208 208 singularlibrarydir = ${datadir}/singular 209 singularlibrary = $(SLIB0:%=LIB/%) $(SLIB1:%=LIB/%) $(PLIBS:%=LIB/%) 209 singularlibrary = $(SLIB0:%=LIB/%) $(SLIB1:%=LIB/%) $(PLIBS:%=LIB/%) $(SLIB2:%=LIB/%) 210 210 nobase_dist_singularlibrary_DATA = LIB/tst.lib LIB/help.cnf ${singularlibrary} 211 EXTRA_DIST = make_alllib.sh LIB/all.lib.tmpl singular-libs \ 212 LIB/help.cnf links/slInit_Dynamic.cc 211 EXTRA_DIST = grammar.y libparse.ll make_alllib.sh LIB/all.lib.tmpl \ 212 singular-libs LIB/help.cnf LIB/.singularrc LIB/COPYING \ 213 links/slInit_Dynamic.cc 213 214 214 215 singularalllibrarydir = ${datadir}/singular/LIB -
Singular/singular-libs
r20a0243 r1a1f34b 61 61 ncall.lib 62 62 63 63 # contributed libs, status not yet decided 64 SLIB2 = KVequiv.lib arr.lib binresol.lib brillnoether.lib chern.lib \ 65 cimonom.lib deflation.lib graal.lib hess.lib lejeune.lib \ 66 mathml.lib maxlike.lib modwalk.lib recover.lib redcgs.lib \ 67 rwalk.lib swalk.lib -
configure.ac
r20a0243 r1a1f34b 65 65 ]) 66 66 67 #AC_CHECK_LIB(pthread,pthread_create)68 67 AX_PTHREAD([], [ 69 68 AC_MSG_ERROR([Pthread library not found. Please set PTHREAD_CFLAGS and PTHREAD_LIBS correctly for your setup]) -
emacs/Makefile.am
r20a0243 r1a1f34b 17 17 dist_emacs_DATA = $(EMACS) 18 18 19 # test.sing20 19 # TODO: remove this! 21 20 #all-local: -
kernel/test.cc
r20a0243 r1a1f34b 171 171 // #include <polys/clapconv.h> // due to factory? :( 172 172 // #include <kernel/tgb_internal.h> // :( 173 // #include <kernel/F4.h> // uses tgb_internal // :(174 173 175 174 -
make_tar.sh
r20a0243 r1a1f34b 7 7 cp doc/*.man singular-$VERSION/doc/. 8 8 command rm singular-$VERSION/.gdbinit singular-$VERSION/*/.gdbinit singular-$VERSION/*/*/.gdbinit singular-$VERSION/*/*/*/.gdbinit 9 command rm singular-$VERSION/IntegerProgramming/README 9 10 command rm -rf singular-$VERSION/modules 10 11 command rm -rf singular-$VERSION/factory/old 12 cd singular-$VERSION 13 ./autogen.sh 14 cd .. 11 15 command rm -rf singular-$VERSION/autom4te.cache 12 16 command rm -rf singular-$VERSION/*/autom4te.cache 13 17 command rm -rf singular-$VERSION/*/*/autom4te.cache 14 cd singular-$VERSION 15 ./autogen.sh 16 cd .. 18 command rm -rf singular-$VERSION/omalloc/Misc 19 command rm -rf singular-$VERSION/Singular/LIB/surfex 20 command rm -rf singular-$VERSION/Singular/dyn_modules/*/test*sh 21 command rm -rf singular-$VERSION/Singular/cnf2ideal.py 22 command rm -rf singular-$VERSION/kernel/old singular-$VERSION/kernel/sample 23 command rm -rf singular-$VERSION/dox/Doxyfile.html.all singular-$VERSION/dox/Doxyfile.in1 singular-$VERSION/dox/Doxyfile.latex.short singular-$VERSION/dox/readme 24 command rm singular-$VERSION/factory/ConwayList.txt 25 command rm -rf singular-$VERSION/logo singular-$VERSION/standalone.test singular-$VERSION/templates singular-$VERSION/tests 17 26 tar cf singular-$VERSION.tar singular-$VERSION 18 27 gzip -9 -f singular-$VERSION.tar -
omalloc/Makefile.am
r20a0243 r1a1f34b 25 25 omalloc_provide.c omAllocFunc.c omallocClass.cc 26 26 27 EXTRA_DIST = omalloc .c omtTestAlloc.c omtTest.h omMmap.c27 EXTRA_DIST = omalloc_debug.c omalloc.c omtTestAlloc.c omtTest.h omMmap.c 28 28 29 29 AM_CPPFLAGS =-I${top_srcdir}/.. -I${top_builddir}/..
Note: See TracChangeset
for help on using the changeset viewer.