Changeset ec0d9b in git
- Timestamp:
- Apr 19, 2011, 12:22:57 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 8184703ffc306b654a4aec87405c86909a05666c
- Parents:
- 1135a6114f30c022e5d6f8153155b10152820187
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-04-19 12:22:57+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:18+01:00
- Files:
-
- 7 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r1135a61 rec0d9b 10 10 *.la 11 11 .libs 12 doc/ 13 Singular/Singularg 14 Singular/mpsr_Tok.xx 15 Singular/ndbm.dl_og 16 Singular/sing_dbm.dl_og 17 Singular/svnver 18 dyn_modules/modgen/modgen 19 dyn_modules/modgen/pathnames.h 20 emacs/cmd-cmpl.el 21 emacs/lib-cmpl.el 22 emacs/lib-temp 12 23 configure 13 24 config.h.in* -
for_Hans_with_love.sh
r1135a61 rec0d9b 1 1 #!/bin/sh 2 3 echo "==============="4 echo "run libtoolize in libpolys/polys/"5 echo "---------------"6 ( cd libpolys/polys/; libtoolize; )7 2 8 3 autotools (){ … … 26 21 done 27 22 28 for d in libpolys; do29 echo "==============="30 echo "run aclocal -I $TOP_DIR/m4, autotools in $d"31 echo "---------------"32 cd $d;33 aclocal -I $TOP_DIR/m434 autotools35 cd $TOP_DIR36 echo37 done38 39 23 for d in omalloc; do 40 24 echo "===============" … … 48 32 done 49 33 50 for d in libpolys /polys; do34 for d in libpolys; do 51 35 echo "===============" 52 echo "run aclocal -I $TOP_DIR/m4 -Im4, autotools in $d"36 echo "run libtoolize --force, aclocal -I $TOP_DIR/m4, autotools in $d" 53 37 echo "---------------" 54 38 cd $d; 39 libtoolize --force 55 40 aclocal -I $TOP_DIR/m4 -I m4 56 41 autotools -
libpolys/Makefile.am
r1135a61 rec0d9b 5 5 SUBDIRS=$(PACKAGES) 6 6 7 TESTDIRS=coeffs 7 TESTDIRS=coeffs tests -
libpolys/configure.ac
r1135a61 rec0d9b 1 1 AC_INIT([singular], [3.1.2.sw]) 2 2 AM_INIT_AUTOMAKE 3 AC_CONFIG_MACRO_DIR([../m4] )3 AC_CONFIG_MACRO_DIR([../m4],[m4]) 4 4 AC_CONFIG_SRCDIR([reporter/reporter.h]) 5 5 AC_CONFIG_HEADER([config.h]) … … 12 12 AC_PROG_LN_S 13 13 AC_PROG_INSTALL 14 AC_PROG_RANLIB15 14 AM_PROG_CC_C_O 15 AC_LIBTOOL_DLOPEN 16 AC_PROG_LIBTOOL 16 17 17 18 # Checks for libraries. … … 21 22 AC_FUNC_ERROR_AT_LINE 22 23 AC_CHECK_FUNCS([memmove memset pow sqrt strchr]) 24 AC_FUNC_VPRINTF 25 AC_FUNC_MALLOC 26 AC_CHECK_FUNC([vsnprintf], [AC_DEFINE([HAVE_VSNPRINTF], [1], 27 [Define if vsnprintf exists.])]) 23 28 24 29 # Checks for header files. … … 34 39 SING_CHECK_PIPE 35 40 36 # Checks for library functions.37 AC_FUNC_VPRINTF38 AC_CHECK_FUNC([vsnprintf], [AC_DEFINE([HAVE_VSNPRINTF], [1],39 [Define if vsnprintf exists.])])40 41 # check for cpu properties 41 42 AC_CHECK_SIZEOF(long,4) … … 49 50 esac 50 51 52 SING_CHECK_P_PROCS 53 51 54 AC_SUBST(LIBPREFIX) 52 55 … … 56 59 AC_CONFIG_FILES([resources/Makefile]) 57 60 AC_CONFIG_FILES([coeffs/Makefile]) 61 AC_CONFIG_FILES([polys/Makefile]) 58 62 AC_CONFIG_FILES([tests/Makefile]) 59 AC_CONFIG_SUBDIRS([polys])60 63 AC_OUTPUT -
libpolys/polys/Makefile.am
r1135a61 rec0d9b 1 ACLOCAL_AMFLAGS = -I m4 -I ../../m42 1 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 3 2 … … 14 13 AM_CXXFLAGS = ${PIPE} ${CXXTEMPLFLAGS} 15 14 16 INCLUDES = -I${top_srcdir} /.. -I${top_srcdir}/../.. -I${top_builddir}/..-I${srcdir} -I${includedir} ${GMP_CFLAGS}17 AM_LDFLAGS = -L${top_builddir}/ ../coeffs -L${top_builddir}/../reporter -L${top_builddir}/../resources -L${top_builddir}/../../omalloc -L${builddir}15 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${srcdir} -I${includedir} ${GMP_CFLAGS} 16 AM_LDFLAGS = -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/../omalloc -L${builddir} 18 17 19 18 if ENABLE_P_PROCS_STATIC … … 102 101 EXTRA_libpolys_a_SOURCES = templates/p_Procs_Static.cc templates/p_Procs_Dynamic.cc 103 102 104 libpolys_a_LIBADD = $(DL_KERNEL_OBJECT)105 libpolys_a_DEPENDENCIES = $(DL_KERNEL_OBJECT)106 107 libpolys_g_a_LIBADD = $(DL_KERNEL_OBJECT_DEBUG)108 libpolys_g_a_DEPENDENCIES = $(DL_KERNEL_OBJECT_DEBUG)109 110 111 103 libpolys_a_includedir =$(includedir)/libpolys/polys 112 104 libpolys_g_a_includedir=$(includedir)/libpolys/polys
Note: See TracChangeset
for help on using the changeset viewer.