Ignore:
Timestamp:
May 12, 2011, 3:12:45 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
2c41bc0e28c6628127866480994b3041a3c1f0af
Parents:
ea000154f0b80de2f44a961be0d4a407828b72c9
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-05-12 15:12:45+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:07+01:00
Message:
fix loading of gftables

- fix loading in nfReadTable
- fix feCleanUpFile
- add to feResourceConfigs: %b/../../factory/gftables
- add feStringAppendResources to test of GF polys
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/resources/feResource.cc

    rea0001 r17b0b05  
    1717
    1818#include "feResource.h"
    19 
    2019
    2120#ifdef AIX_4
     
    8382   "%r/../LIB;"
    8483   "%d/LIB;"
    85    "%d/../LIB"
     84   "%d/../LIB;"
     85   "%b/../../../factory/gftables;"
     86   "%b/../../factory/gftables",
    8687   ""},
    8788  {"Singular",  'S',    feResBinary,"SINGULAR_EXECUTABLE",  "%d/"S_UNAME"/Singular",(char *)""},
     
    523524        if (*(fn+2) == '.' && (*(fn + 3) == '/' || *(fn + 3) == '\0'))
    524525        {
     526        #if 0
     527        // this does not work: ./../../mmm will be changed to ./../mmm
     528        // but we only want to change ././mmm to ./mmm
    525529          *fn = '\0';
    526530          s = strrchr(fname, '/');
     
    534538            *fn = '/';
    535539          }
     540        #endif
    536541        }
    537542        else if (*(fn+2) == '/' || *(fn+2) == '\0')
Note: See TracChangeset for help on using the changeset viewer.