Changeset 630ca9 in git for libpolys/resources


Ignore:
Timestamp:
Mar 23, 2011, 6:39:21 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
20d9284f2e2a49cb47ad41808ddefe8b058c7647
Parents:
1b49fffcc09b3cc35d86a2d919252c972d6515eb
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-23 18:39:21+01:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:12+01:00
Message:
FIX: separate debug/optimized flags for resources and coeffs
FIX: longrat.cc: missing "coeff" arguments!
Location:
libpolys/resources
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libpolys/resources/Makefile.am

    r1b49ff r630ca9  
    11lib_LIBRARIES=libresources.a libresources_g.a
    22
    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
     3CXXTEMPLFLAGS      = -fno-implicit-templates --no-exceptions
     4
     5libresources_a_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
     6libresources_g_a_CFLAGS = ${PIPE}
     7
     8libresources_a_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
     9libresources_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
     10# -fdiagnostics-show-option
     11
     12libresources_a_CPPFLAGS   = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
     13libresources_g_a_CPPFLAGS = -DHAVE_CONFIG_H
     14
     15INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/..
    816
    917SOURCES = feFopen.cc feResource.cc
    10 
    11 libresources_a_SOURCES = $(SOURCES)
    12 
    13 libresources_a_includedir=$(includedir)/libpolys/resources
    14 
    15 libresources_a_include_HEADERS = feFopen.h feResource.h
    16 
     18libresources_a_SOURCES   = $(SOURCES)
    1719libresources_g_a_SOURCES = $(SOURCES)
    1820
    19 libresources_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
    20 # -fdiagnostics-show-option
     21libresources_a_includedir  =$(includedir)/libpolys/resources
     22libresources_g_a_includedir=$(includedir)/libpolys/resources
     23
     24RESOURCESHEADERS  = feFopen.h feResource.h
     25libresources_a_include_HEADERS   = $(RESOURCESHEADERS)
     26libresources_g_a_include_HEADERS = $(RESOURCESHEADERS)
     27
     28
     29
  • libpolys/resources/configure.ac

    r1b49ff r630ca9  
    33
    44AC_PREREQ([2.65])
    5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
     5AC_INIT([resources], [3.1.2.sw])
    66AM_INIT_AUTOMAKE
    77AC_CONFIG_SRCDIR([feFopen.h])
     
    1414AC_PROG_INSTALL
    1515AC_PROG_RANLIB
     16AM_PROG_CC_C_O
    1617
    1718# Checks for libraries.
  • libpolys/resources/feFopen.cc

    r1b49ff r630ca9  
    66#include <unistd.h>
    77
    8 #include <resources/config.h>
    9 
     8#include "config.h"
    109#include <misc/auxiliary.h>
    1110
  • libpolys/resources/feResource.cc

    r1b49ff r630ca9  
    1111#include <string.h>
    1212
    13 #include <resources/config.h>
    14 
     13#include "config.h"
    1514#include <misc/auxiliary.h>
    1615
Note: See TracChangeset for help on using the changeset viewer.