Changeset 8785
- Timestamp:
- Sep 8, 2006, 5:24:34 PM (20 years ago)
- Location:
- trunk
- Files:
-
- 19 edited
-
ppArith/autogen.sh (modified) (2 diffs)
-
ppArith/configure.ac (modified) (2 diffs)
-
ppArith/src/ppArith.c (modified) (1 diff)
-
ppArith/src/ppArithData.c (modified) (1 diff)
-
ppArith/src/ppArithLoop.c (modified) (1 diff)
-
ppArith/src/ppArithSetup.c (modified) (1 diff)
-
ppFringe/autogen.sh (modified) (2 diffs)
-
ppFringe/configure.ac (modified) (2 diffs)
-
ppFringe/src/ppFringe.c (modified) (1 diff)
-
ppFringe/src/ppFringeData.c (modified) (1 diff)
-
ppFringe/src/ppFringeLoop.c (modified) (1 diff)
-
ppFringe/src/ppFringeSetup.c (modified) (1 diff)
-
ppNorm/autogen.sh (modified) (2 diffs)
-
ppNorm/configure.ac (modified) (2 diffs)
-
ppNorm/src/ppNorm.c (modified) (1 diff)
-
ppNorm/src/ppNormCalc.c (modified) (1 diff)
-
ppNorm/src/ppNormData.c (modified) (1 diff)
-
ppNorm/src/ppNormLoop.c (modified) (1 diff)
-
ppNorm/src/ppNormSetup.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppArith/autogen.sh
r8479 r8785 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/ppArith/configure.ac
r8682 r8785 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/ppArith/src/ppArith.c
r8479 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppArith/src/ppArithData.c
r8479 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppArith/src/ppArithLoop.c
r8479 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/ppArith/src/ppArithSetup.c
r8479 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppFringe/autogen.sh
r7826 r8785 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/ppFringe/configure.ac
r8682 r8785 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/ppFringe/src/ppFringe.c
r7826 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppFringe/src/ppFringeData.c
r7888 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppFringe/src/ppFringeLoop.c
r7890 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppFringe/src/ppFringeSetup.c
r7891 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppNorm/autogen.sh
r8031 r8785 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/ppNorm/configure.ac
r8682 r8785 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/ppNorm/src/ppNorm.c
r8031 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppNorm/src/ppNormCalc.c
r8784 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppNorm/src/ppNormData.c
r8031 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/ppNorm/src/ppNormLoop.c
r8031 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <assert.h> -
trunk/ppNorm/src/ppNormSetup.c
r8031 r8785 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 5 #ifdef HAVE_CONFIG_H 6 #include <config.h> 7 #endif 8 1 9 #include <stdio.h> 2 10 #include <pslib.h>
Note:
See TracChangeset
for help on using the changeset viewer.
