Changeset 8780 for trunk/psastro
- Timestamp:
- Sep 8, 2006, 4:24:45 PM (20 years ago)
- Location:
- trunk/psastro
- Files:
-
- 23 edited
-
autogen.sh (modified) (3 diffs)
-
configure.ac (modified) (2 diffs)
-
src/psastro.c (modified) (1 diff)
-
src/psastroArguments.c (modified) (1 diff)
-
src/psastroAstromGuess.c (modified) (1 diff)
-
src/psastroChipAstrom.c (modified) (1 diff)
-
src/psastroConvert.c (modified) (1 diff)
-
src/psastroDataLoad.c (modified) (1 diff)
-
src/psastroDataSave.c (modified) (1 diff)
-
src/psastroLoadReferences.c (modified) (1 diff)
-
src/psastroMosaicAstrom.c (modified) (1 diff)
-
src/psastroMosaicChipAstrom.c (modified) (1 diff)
-
src/psastroMosaicGetGrads.c (modified) (1 diff)
-
src/psastroMosaicGetRefstars.c (modified) (1 diff)
-
src/psastroMosaicHeaders.c (modified) (1 diff)
-
src/psastroMosaicRescaleChips.c (modified) (1 diff)
-
src/psastroMosaicSetAstrom.c (modified) (1 diff)
-
src/psastroMosaicSetMatch.c (modified) (1 diff)
-
src/psastroOneChip.c (modified) (1 diff)
-
src/psastroParseCamera.c (modified) (1 diff)
-
src/psastroTestFuncs.c (modified) (1 diff)
-
src/psastroUtils.c (modified) (1 diff)
-
src/psastroWCS.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/autogen.sh
r7574 r8780 17 17 LIBTOOLIZE=libtoolize 18 18 ACLOCAL=aclocal 19 #AUTOHEADER=autoheader19 AUTOHEADER=autoheader 20 20 AUTOMAKE=automake 21 21 AUTOCONF=autoconf … … 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/psastro/configure.ac
r8673 r8780 6 6 7 7 AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2]) 8 dnl AM_CONFIG_HEADER([config.h])8 AM_CONFIG_HEADER([src/config.h]) 9 9 AM_MAINTAINER_MODE 10 10 … … 14 14 AC_PROG_INSTALL 15 15 AC_PROG_LIBTOOL 16 17 dnl enable largefile supports 18 AC_SYS_LARGEFILE 16 19 17 20 dnl handle debug building -
trunk/psastro/src/psastro.c
r7677 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroArguments.c
r7829 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 # include <glob.h> -
trunk/psastro/src/psastroAstromGuess.c
r8136 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroChipAstrom.c
r7332 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroConvert.c
r7636 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 // XXX leak free 2006.04.27 -
trunk/psastro/src/psastroDataLoad.c
r7636 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 // XXX leak free 2006.04.27 -
trunk/psastro/src/psastroDataSave.c
r7635 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 // XXX leak free 2006.04.27 -
trunk/psastro/src/psastroLoadReferences.c
r8674 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 int mkstemp(char *template); -
trunk/psastro/src/psastroMosaicAstrom.c
r7332 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicChipAstrom.c
r7332 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicGetGrads.c
r7332 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicGetRefstars.c
r8674 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicHeaders.c
r7385 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicRescaleChips.c
r7333 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicSetAstrom.c
r7332 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroMosaicSetMatch.c
r8674 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroOneChip.c
r7014 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroParseCamera.c
r7620 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 // XXX leak free 2006.04.27 -
trunk/psastro/src/psastroTestFuncs.c
r7014 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 -
trunk/psastro/src/psastroUtils.c
r7014 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6 # define RENORM 0 -
trunk/psastro/src/psastroWCS.c
r8674 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psastro.h" 2 6
Note:
See TracChangeset
for help on using the changeset viewer.
