Changeset 9553f16d in rtems


Ignore:
Timestamp:
11/12/02 18:17:49 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ea9f767
Parents:
df413e9
Message:

2002-11-12 Ralf Corsepius <corsepiu@…>

  • configure.ac: Generate unixsize.h on the fly, filter out autoconf-2.53 PACKAGE crap.
  • rtems/score/.cvsignore: unixsize*
Location:
cpukit/score/cpu/unix
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/cpu/unix/ChangeLog

    rdf413e9 r9553f16d  
     12002-11-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * configure.ac: Generate unixsize.h on the fly, filter out
     4        autoconf-2.53 PACKAGE crap.
     5        * rtems/score/.cvsignore: unixsize*
     6
    172002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/unix/configure.ac

    rdf413e9 r9553f16d  
    4444])
    4545
    46 AM_CONFIG_HEADER(rtems/score/unixsize.h)
     46AM_CONFIG_HEADER([rtems/score/unixsize-tmp.h],[
     47echo "/* automatically generated -- DO NOT EDIT!! */" >$tmp/config.h
     48echo                                                  >>$tmp/config.h
     49echo "#ifndef __rtems_score_unixsize_h"               >>$tmp/config.h
     50echo "#define __rtems_score_unixsize_h"               >>$tmp/config.h
     51echo                                                  >>$tmp/config.h
     52sed -e '/.*PACKAGE.*/d' rtems/score/unixsize-tmp.h >> $tmp/config.h
     53echo                                                  >>$tmp/config.h
     54echo "#endif"                                         >>$tmp/config.h
     55AS_IF([cmp -s rtems/score/unixsize.h $tmp/config.h 2>/dev/null],
     56  [AC_MSG_NOTICE([rtems/score/unixsize.h is unchanged])
     57   rm -f $tmp/config.h],
     58  [AC_MSG_NOTICE([creating rtems/score/unixsize.h])
     59   rm -f rtems/score/unixsize.h
     60   mv $tmp/config.h rtems/score/unixsize.h])
     61])
    4762
    4863# Explicitly list all Makefiles here
  • cpukit/score/cpu/unix/rtems/score/.cvsignore

    rdf413e9 r9553f16d  
    11Makefile
    22Makefile.in
    3 unixsize.h*
     3unixsize*
    44stamp-h*
Note: See TracChangeset for help on using the changeset viewer.