Changeset f093ba in git


Ignore:
Timestamp:
Oct 6, 2010, 5:15:56 PM (14 years ago)
Author:
Mohamed Barakat <mohamed.barakat@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
73c9c6ef6b10bf024a53271a8e0ba774c6ce1a6b
Parents:
7b05b52baa6f16125a7ab10bb272db452b5e3f33
git-author:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-10-06 17:15:56+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:33+01:00
Message:
reporter works with the new configure.in
Location:
reporter
Files:
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • reporter/Makefile.in

    r7b05b5 rf093ba  
    3535CXXFLAGS        = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE}
    3636CXXTEMPLFLAGS   = -fno-implicit-templates --no-exceptions
    37 CPPFLAGS        = -I${srcdir} -I${includedir}
     37CPPFLAGS        = -I${srcdir} -I${includedir} -I${prefix}/include/singular
    3838DEFS            = -DNDEBUG -DOM_NDEBUG -Dix86_Linux -DHAVE_CONFIG_H
    3939
  • reporter/configure

    r7b05b5 rf093ba  
    39033903
    39043904
     3905project=singular
     3906component=reporter
     3907
     3908
     3909# expand prefix
     3910test "x$prefix" = xNONE && prefix=$ac_default_prefix
     3911
     3912# expand exec_prefixad
     3913if test "x$exec_prefix" = xNONE; then
     3914 exec_prefix=${prefix}
     3915fi
     3916
     3917# expand libdir
     3918test "x$libdir" = 'x${exec_prefix}/lib'&& libdir="${exec_prefix}/lib/${project}/${component}"
     3919
     3920# expand includedir
     3921test "x$includedir" = 'x${prefix}/include' && includedir="${exec_prefix}/include/${project}/${component}"
     3922
    39053923ac_config_files="$ac_config_files Makefile"
    39063924
  • reporter/configure.in

    r7b05b5 rf093ba  
    4949AC_SUBST(PIPE)
    5050
     51dnl lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
     52dnl path stuff
     53dnl
     54
     55project=singular
     56component=reporter
     57
     58dnl set exec_prefix, libdir, includedir to some sensible values
     59dnl if they are not yet already set
     60
     61# expand prefix
     62test "x$prefix" = xNONE && prefix=$ac_default_prefix
     63
     64# expand exec_prefixad
     65if test "x$exec_prefix" = xNONE; then
     66 exec_prefix=${prefix}
     67fi
     68
     69# expand libdir
     70test "x$libdir" = 'x${exec_prefix}/lib'&& libdir="${exec_prefix}/lib/${project}/${component}"
     71
     72# expand includedir
     73test "x$includedir" = 'x${prefix}/include' && includedir="${exec_prefix}/include/${project}/${component}"
     74
    5175AC_CONFIG_FILES([Makefile])
    5276AC_OUTPUT
  • reporter/dError.c

    r7b05b5 rf093ba  
    1616#include "reporter.h"
    1717#ifdef HAVE_CONFIG_H
    18 #include <omalloc.h>
     18#include <omalloc/omalloc.h>
    1919#endif
    2020
  • reporter/reporter.cc

    r7b05b5 rf093ba  
    1111#include <stdlib.h>
    1212#include <stdio.h>
    13 #include <mylimits.h>
     13#include <misc/mylimits.h>
    1414#include <stdarg.h>
    1515#include <sys/stat.h>
     
    2222
    2323#include "reporter.h"
    24 #include <omalloc.h>
     24#include <omalloc/omalloc.h>
    2525//#include "options.h"
    2626
  • reporter/reporter.h

    r7b05b5 rf093ba  
    1010#include <stdio.h>
    1111#include <string.h>
    12 #include <auxiliary.h>
     12#include <misc/auxiliary.h>
    1313
    1414extern char*  feErrors;
Note: See TracChangeset for help on using the changeset viewer.