Changeset 1b49ff in git
- Timestamp:
- Mar 23, 2011, 6:00:22 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 630ca96539668c0d4cc157cc95f84f9a08e7d663
- Parents:
- 53ca3d94166d37edb1866aebb7bb4d2fc87ade0d
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-23 18:00:22+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:12+01:00
- Location:
- libpolys
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/configure.ac
r53ca3d r1b49ff 14 14 AC_PROG_INSTALL 15 15 AC_PROG_RANLIB 16 AM_PROG_CC_C_O 16 17 17 18 # Checks for libraries. -
libpolys/reporter/Makefile.am
r53ca3d r1b49ff 1 1 lib_LIBRARIES=libreporter.a libreporter_g.a 2 2 3 AM_CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} 4 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 5 AM_CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 6 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. 7 AM_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 3 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 8 4 9 SOURCES = dError.c reporter.cc 5 libreporter_a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 6 libreporter_g_a_CFLAGS = ${PIPE} 10 7 11 libreporter_a_SOURCES = $(SOURCES) 8 libreporter_a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 9 libreporter_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 10 # -fdiagnostics-show-option 12 11 13 libreporter_a_includedir=$(includedir)/libpolys/reporter 12 libreporter_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 13 libreporter_g_a_CPPFLAGS = -DHAVE_CONFIG_H 14 14 15 libreporter_a_include_HEADERS = reporter.h 15 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. 16 16 17 SOURCES = dError.c reporter.cc 18 libreporter_a_SOURCES = $(SOURCES) 17 19 libreporter_g_a_SOURCES = $(SOURCES) 18 20 19 libreporter_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long 20 # -fdiagnostics-show-option 21 libreporter_a_includedir =$(includedir)/libpolys/reporter 22 libreporter_g_a_includedir=$(includedir)/libpolys/reporter 23 24 REPORTERHEADERS = reporter.h 25 libreporter_a_include_HEADERS = $(REPORTERHEADERS) 26 libreporter_g_a_include_HEADERS = $(REPORTERHEADERS) 27 28 29 -
libpolys/reporter/configure.ac
r53ca3d r1b49ff 3 3 4 4 AC_PREREQ(2.61) 5 AC_INIT( FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)5 AC_INIT([reporter], [3.1.2.sw]) 6 6 AM_INIT_AUTOMAKE 7 7 AC_CONFIG_SRCDIR([reporter.h]) … … 14 14 AC_PROG_INSTALL 15 15 AC_PROG_RANLIB 16 AM_PROG_CC_C_O 16 17 17 18 # Checks for libraries. -
libpolys/reporter/dError.c
r53ca3d r1b49ff 11 11 #ifndef DERROR_C 12 12 #define DERROR_C 13 13 14 #include <stdarg.h> 14 15 #include <stdio.h> 15 #include <reporter/config.h> 16 17 #include "config.h" 18 16 19 #include <reporter/reporter.h> 17 20 #ifdef HAVE_CONFIG_H -
libpolys/reporter/reporter.cc
r53ca3d r1b49ff 7 7 */ 8 8 9 #include <reporter/config.h>9 #include "config.h" 10 10 11 11 #include <stdlib.h>
Note: See TracChangeset
for help on using the changeset viewer.