Changeset 8783
- Timestamp:
- Sep 8, 2006, 4:54:27 PM (20 years ago)
- Location:
- trunk/stac
- Files:
-
- 23 edited
-
autogen.sh (modified) (2 diffs)
-
configure.ac (modified) (2 diffs)
-
src/calcGradient.c (modified) (1 diff)
-
src/combine.c (modified) (1 diff)
-
src/combineConfig.c (modified) (1 diff)
-
src/shift.c (modified) (1 diff)
-
src/shiftSize.c (modified) (1 diff)
-
src/stac.c (modified) (1 diff)
-
src/stacAreaOfInterest.c (modified) (1 diff)
-
src/stacCheckMemory.c (modified) (1 diff)
-
src/stacCombine.c (modified) (1 diff)
-
src/stacConfig.c (modified) (1 diff)
-
src/stacErrorImages.c (modified) (1 diff)
-
src/stacHelp.c (modified) (1 diff)
-
src/stacInvertMaps.c (modified) (1 diff)
-
src/stacRead.c (modified) (1 diff)
-
src/stacRejection.c (modified) (1 diff)
-
src/stacScales.c (modified) (1 diff)
-
src/stacSize.c (modified) (1 diff)
-
src/stacTime.c (modified) (1 diff)
-
src/stacTransform.c (modified) (1 diff)
-
src/stacWrite.c (modified) (1 diff)
-
src/sum.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/stac/autogen.sh
r5745 r8783 37 37 } 38 38 39 #($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 || {40 #echo41 #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=145 #}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 } 46 46 47 47 ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || { … … 77 77 #$LIBTOOLIZE --copy --force || echo "$LIBTOOlIZE failed" 78 78 $ACLOCAL || echo "$ACLOCAL failed" 79 #$AUTOHEADER || echo "$AUTOHEADER failed"79 $AUTOHEADER || echo "$AUTOHEADER failed" 80 80 $AUTOMAKE --add-missing --force-missing --copy || echo "$AUTOMAKE failed" 81 81 $AUTOCONF || echo "$AUTOCONF failed" -
trunk/stac/configure.ac
r8683 r8783 5 5 6 6 AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2]) 7 dnl AM_CONFIG_HEADER([config.h])7 AM_CONFIG_HEADER([src/config.h]) 8 8 AM_MAINTAINER_MODE 9 9 … … 13 13 AC_PROG_INSTALL 14 14 dnl AC_PROG_LIBTOOL 15 16 dnl enable largefile supports 17 AC_SYS_LARGEFILE 15 18 16 19 dnl handle debug building -
trunk/stac/src/calcGradient.c
r6771 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/stac/src/combine.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/stac/src/combineConfig.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <stdlib.h> -
trunk/stac/src/shift.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <stdlib.h> -
trunk/stac/src/shiftSize.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 /* 2 6 * shiftSize: -
trunk/stac/src/stac.c
r7760 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/stac/src/stacAreaOfInterest.c
r5743 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacCheckMemory.c
r8684 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/stac/src/stacCombine.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacConfig.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <stdlib.h> -
trunk/stac/src/stacErrorImages.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/stac/src/stacHelp.c
r3660 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 -
trunk/stac/src/stacInvertMaps.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacRead.c
r8684 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <string.h> -
trunk/stac/src/stacRejection.c
r8782 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacScales.c
r8782 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacSize.c
r6887 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacTime.c
r5743 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <sys/time.h> -
trunk/stac/src/stacTransform.c
r7544 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/stacWrite.c
r5745 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/stac/src/sum.c
r8684 r8783 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 // Brain-dead simple stack of multiple frames 2 6 // Makes no effort to zap bad pixels, or rescale images.
Note:
See TracChangeset
for help on using the changeset viewer.
