Changeset 8751
- Timestamp:
- Sep 6, 2006, 11:32:36 AM (20 years ago)
- Location:
- trunk/ppImage
- Files:
-
- 27 edited
-
autogen.sh (modified) (2 diffs)
-
configure.ac (modified) (2 diffs)
-
src/ppFocus.c (modified) (1 diff)
-
src/ppFocusArguments.c (modified) (1 diff)
-
src/ppFocusFitFWHM.c (modified) (1 diff)
-
src/ppFocusGetFWHM.c (modified) (1 diff)
-
src/ppFocusParseCamera.c (modified) (1 diff)
-
src/ppImage.c (modified) (1 diff)
-
src/ppImageAddstar.c (modified) (1 diff)
-
src/ppImageArguments.c (modified) (1 diff)
-
src/ppImageAstrom.c (modified) (1 diff)
-
src/ppImageCleanup.c (modified) (1 diff)
-
src/ppImageDetrendBias.c (modified) (1 diff)
-
src/ppImageDetrendFlat.c (modified) (1 diff)
-
src/ppImageDetrendMask.c (modified) (1 diff)
-
src/ppImageDetrendNonLinear.c (modified) (1 diff)
-
src/ppImageDetrendPedestal.c (modified) (1 diff)
-
src/ppImageDetrendReadout.c (modified) (1 diff)
-
src/ppImageLoop.c (modified) (1 diff)
-
src/ppImageMosaic.c (modified) (1 diff)
-
src/ppImageOptions.c (modified) (1 diff)
-
src/ppImageParseCamera.c (modified) (1 diff)
-
src/ppImageParseDetrend.c (modified) (1 diff)
-
src/ppImagePhotom.c (modified) (1 diff)
-
src/ppImageRebinReadout.c (modified) (1 diff)
-
src/ppMem.c (modified) (1 diff)
-
src/ppTest.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/autogen.sh
r6902 r8751 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/ppImage/configure.ac
r8673 r8751 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/ppImage/src/ppFocus.c
r8675 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppFocusArguments.c
r7829 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppFocusFitFWHM.c
r7757 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppFocusGetFWHM.c
r8675 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppFocusParseCamera.c
r8058 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImage.c
r8675 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageAddstar.c
r7771 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageArguments.c
r8348 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageAstrom.c
r7639 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageCleanup.c
r7708 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageDetrendBias.c
r7585 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageDetrendFlat.c
r6747 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/ppImage/src/ppImageDetrendMask.c
r7716 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageDetrendNonLinear.c
r8675 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageDetrendPedestal.c
r6747 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/ppImage/src/ppImageDetrendReadout.c
r7716 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageLoop.c
r8348 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <ppStats.h> 2 6 #include "ppImage.h" -
trunk/ppImage/src/ppImageMosaic.c
r7748 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageOptions.c
r7771 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageParseCamera.c
r8058 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageParseDetrend.c
r6860 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImagePhotom.c
r7687 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "ppImage.h" 2 6 -
trunk/ppImage/src/ppImageRebinReadout.c
r7629 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "ppImage.h" 2 6 -
trunk/ppImage/src/ppMem.c
r8675 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include "pslib.h" -
trunk/ppImage/src/ppTest.c
r7829 r8751 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6
Note:
See TracChangeset
for help on using the changeset viewer.
