IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8783


Ignore:
Timestamp:
Sep 8, 2006, 4:54:27 PM (20 years ago)
Author:
jhoblitt
Message:

enable config.h generation
enable large file support

Location:
trunk/stac
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • trunk/stac/autogen.sh

    r5745 r8783  
    3737}
    3838
    39 #($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 || {
    40 #        echo
    41 #        echo "You must have $AUTOHEADER installed to compile $PROJECT."
    42 #        echo "Download the appropriate package for your distribution,"
    43 #        echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
    44 #        DIE=1
    45 #}
     39($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 || {
     40        echo
     41        echo "You must have $AUTOHEADER installed to compile $PROJECT."
     42        echo "Download the appropriate package for your distribution,"
     43        echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
     44        DIE=1
     45}
    4646
    4747($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
     
    7777#$LIBTOOLIZE --copy --force || echo "$LIBTOOlIZE failed"
    7878$ACLOCAL || echo "$ACLOCAL failed"
    79 #$AUTOHEADER || echo "$AUTOHEADER failed"
     79$AUTOHEADER || echo "$AUTOHEADER failed"
    8080$AUTOMAKE --add-missing --force-missing --copy || echo "$AUTOMAKE failed"
    8181$AUTOCONF || echo "$AUTOCONF failed"
  • trunk/stac/configure.ac

    r8683 r8783  
    55
    66AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2])
    7 dnl AM_CONFIG_HEADER([config.h])
     7AM_CONFIG_HEADER([src/config.h])
    88AM_MAINTAINER_MODE
    99
     
    1313AC_PROG_INSTALL
    1414dnl AC_PROG_LIBTOOL
     15
     16dnl enable largefile supports
     17AC_SYS_LARGEFILE
    1518
    1619dnl handle debug building
  • trunk/stac/src/calcGradient.c

    r6771 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include "pslib.h"
  • trunk/stac/src/combine.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include "pslib.h"
  • trunk/stac/src/combineConfig.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <stdlib.h>
  • trunk/stac/src/shift.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <stdlib.h>
  • trunk/stac/src/shiftSize.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15/*
    26 * shiftSize:
  • trunk/stac/src/stac.c

    r7760 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include "pslib.h"
  • trunk/stac/src/stacAreaOfInterest.c

    r5743 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacCheckMemory.c

    r8684 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include "pslib.h"
  • trunk/stac/src/stacCombine.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacConfig.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <stdlib.h>
  • trunk/stac/src/stacErrorImages.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include "pslib.h"
  • trunk/stac/src/stacHelp.c

    r3660 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26
  • trunk/stac/src/stacInvertMaps.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacRead.c

    r8684 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <string.h>
  • trunk/stac/src/stacRejection.c

    r8782 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacScales.c

    r8782 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacSize.c

    r6887 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacTime.c

    r5743 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <sys/time.h>
  • trunk/stac/src/stacTransform.c

    r7544 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/stacWrite.c

    r5745 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <assert.h>
  • trunk/stac/src/sum.c

    r8684 r8783  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15// Brain-dead simple stack of multiple frames
    26// Makes no effort to zap bad pixels, or rescale images.
Note: See TracChangeset for help on using the changeset viewer.