Changeset a3a6a0 in git
- Timestamp:
- Sep 1, 2016, 10:48:08 AM (7 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- d4e6a9eab50cd94d6a7a4660b9b587bfe8242de6
- Parents:
- f7a7431c2c9f7edfccca81fac262c41c14c61d09
- Files:
-
- 11 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
rf7a7431 ra3a6a0 177 177 ESingular_LDADD = ${top_builddir}/libpolys/reporter/libreporter.la \ 178 178 ${top_builddir}/libpolys/misc/libmisc.la ${top_builddir}/omalloc/libomalloc.la \ 179 ${top_builddir}/resources/lib resources.la179 ${top_builddir}/resources/libsingular_resources.la 180 180 181 181 … … 187 187 TSingular_LDADD = ${top_builddir}/libpolys/reporter/libreporter.la \ 188 188 ${top_builddir}/libpolys/misc/libmisc.la ${top_builddir}/omalloc/libomalloc.la \ 189 ${top_builddir}/resources/lib resources.la189 ${top_builddir}/resources/libsingular_resources.la 190 190 191 191 TSingular_SOURCES = emacs.cc fegetopt.c fegetopt.h feOptTS.inc feOpt.cc -
autogen.sh
rf7a7431 ra3a6a0 5 5 # -d --warnings=all 6 6 autoreconf -v -f -i 7 find . -name configure -exec sed -i "s/-g -O2/-g/g" {} \; -print 7 8 8 9 cd - -
factory/configure.ac
rf7a7431 ra3a6a0 121 121 [test "x$enable_streamio" = xyes]) 122 122 123 AC_ARG_VAR( [RESOURCES_INCLUDES], [INCLUDES for lib resources] )124 AC_ARG_VAR( [RESOURCES_LIBS], [LIBS for lib resources] )125 126 AC_MSG_CHECKING(whether lib resources should be used)123 AC_ARG_VAR( [RESOURCES_INCLUDES], [INCLUDES for libsingular_resources] ) 124 AC_ARG_VAR( [RESOURCES_LIBS], [LIBS for libsingular_resources] ) 125 126 AC_MSG_CHECKING(whether libsingular_resources should be used) 127 127 if test "x$with_Singular" = xyes; 128 128 then … … 135 135 AC_MSG_RESULT(${RESOURCES_LIBS:-unset}) 136 136 137 PKG_REQUIRE="$PKG_REQUIRE resources"137 PKG_REQUIRE="$PKG_REQUIRE singular_resources" 138 138 AC_SUBST(PKG_REQUIRE) 139 139 else -
gfanlib/configure.ac
rf7a7431 ra3a6a0 3 3 4 4 AC_PREREQ([2.63]) 5 AC_INIT([libgfan], [0. 1], [ren@mathematik.uni-kl.de])5 AC_INIT([libgfan], [0.6], [ren@mathematik.uni-kl.de]) 6 6 AC_CONFIG_MACRO_DIR([../m4]) 7 7 AC_CONFIG_AUX_DIR([../build-aux]) -
libpolys/configure.ac
rf7a7431 ra3a6a0 91 91 ENABLE_RESOURCES="yes" 92 92 93 AC_ARG_VAR( [RESOURCES_INCLUDES], [INCLUDES for lib resources] )94 AC_ARG_VAR( [RESOURCES_LIBS], [LIBS for lib resources] )93 AC_ARG_VAR( [RESOURCES_INCLUDES], [INCLUDES for libsingular_resources] ) 94 AC_ARG_VAR( [RESOURCES_LIBS], [LIBS for libsingular_resources] ) 95 95 96 AC_MSG_CHECKING(whether lib resources should be used)96 AC_MSG_CHECKING(whether libsingular_resources should be used) 97 97 98 98 if test "x$ENABLE_RESOURCES" = xyes; … … 106 106 AC_MSG_RESULT(${RESOURCES_LIBS:-unset}) 107 107 108 PKG_REQUIRE="$PKG_REQUIRE resources"108 PKG_REQUIRE="$PKG_REQUIRE singular_resources" 109 109 AC_SUBST(PKG_REQUIRE) 110 110 else -
m4/options.m4
rf7a7431 ra3a6a0 151 151 AC_DEFUN([SING_USE_RESOURCES], 152 152 [ 153 AC_ARG_ENABLE( resources,154 [AS_HELP_STRING([--disable- resources], [do NOT use libresources within the factory])],153 AC_ARG_ENABLE(singular_resources, 154 [AS_HELP_STRING([--disable-singular_resources], [do NOT use libsingular_resources within the factory])], 155 155 [if test "x$enableval" = "xyes"; then 156 156 ENABLE_RESOURCES=yes … … 158 158 ENABLE_RESOURCES=yes) 159 159 160 AC_MSG_CHECKING(whether to use lib resources in factory and co.)160 AC_MSG_CHECKING(whether to use libsingular_resources in factory and co.) 161 161 if test "x$ENABLE_RESOURCES" = xyes; then 162 162 AC_MSG_RESULT(yes) 163 163 RESOURCES_INCLUDES="-I$ac_abs_top_srcdir " 164 164 165 RESOURCES_LIBS="$ac_abs_top_builddir/resources/lib resources.la"165 RESOURCES_LIBS="$ac_abs_top_builddir/resources/libsingular_resources.la" 166 166 167 167 AC_SUBST(RESOURCES_INCLUDES) … … 172 172 ac_configure_args="$ac_configure_args $ENABLE_ARG" 173 173 174 PKG_REQUIRE="$PKG_REQUIRE resources"174 PKG_REQUIRE="$PKG_REQUIRE singular_resources" 175 175 AC_SUBST(PKG_REQUIRE) 176 176 else -
resources/Makefile.am
rf7a7431 ra3a6a0 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 2 3 lib resources_LTLIBRARIES = libresources.la3 libsingular_resources_LTLIBRARIES = libsingular_resources.la 4 4 5 lib resourcesdir = $(libdir)5 libsingular_resourcesdir = $(libdir) 6 6 7 7 … … 10 10 11 11 SOURCES = omFindExec.c feResource.cc feFopen.cc 12 lib resources_la_SOURCES = $(SOURCES)12 libsingular_resources_la_SOURCES = $(SOURCES) 13 13 14 lib resources_la_LDFLAGS = -release ${PACKAGE_VERSION}14 libsingular_resources_la_LDFLAGS = -release ${PACKAGE_VERSION} 15 15 16 lib resources_includedir =$(includedir)/resources16 libsingular_resources_includedir =$(includedir)/resources 17 17 18 lib resources_include_HEADERS = omFindExec.h feResource.h feFopen.h18 libsingular_resources_include_HEADERS = omFindExec.h feResource.h feFopen.h 19 19 20 nodist_lib resources_include_HEADERS =resourcesconfig.h21 DISTCLEANFILES = $(nodist_lib resources_include_HEADERS)20 nodist_libsingular_resources_include_HEADERS = singular_resourcesconfig.h 21 DISTCLEANFILES = $(nodist_libsingular_resources_include_HEADERS) 22 22 23 23 pkgconfigdir = $(libdir)/pkgconfig 24 pkgconfig_DATA = resources.pc24 pkgconfig_DATA = singular_resources.pc -
resources/configure.ac
rf7a7431 ra3a6a0 1 AC_INIT([ resources], [4.0.3])1 AC_INIT([singular_resources], [4.0.3]) 2 2 3 3 AC_CONFIG_MACRO_DIR([../m4]) … … 15 15 16 16 # Add pre'prefixed config 17 AX_PREFIX_CONFIG_H([ resourcesconfig.h],[],[_config.h])17 AX_PREFIX_CONFIG_H([singular_resourcesconfig.h],[],[_config.h]) 18 18 19 19 SING_RESET_FLAGS() … … 71 71 AC_DEFINE_UNQUOTED([DATA_DIR],"$config_datadir",[datadir]) 72 72 73 AC_CONFIG_FILES([ resources.pc Makefile])73 AC_CONFIG_FILES([singular_resources.pc Makefile]) 74 74 AC_OUTPUT -
resources/feFopen.cc
rf7a7431 ra3a6a0 1 #include " resourcesconfig.h"1 #include "singular_resourcesconfig.h" 2 2 #include "feResource.h" 3 3 #include "feFopen.h" -
resources/feResource.cc
rf7a7431 ra3a6a0 6 6 */ 7 7 8 #include " resourcesconfig.h"8 #include "singular_resourcesconfig.h" 9 9 #include "feResource.h" 10 10 #include "omFindExec.h" -
resources/omFindExec.c
rf7a7431 ra3a6a0 7 7 8 8 9 #include " resourcesconfig.h"9 #include "singular_resourcesconfig.h" 10 10 11 11
Note: See TracChangeset
for help on using the changeset viewer.