Changeset 1745 in Sophya for trunk/ArchTOIPipe


Ignore:
Timestamp:
Nov 12, 2001, 11:46:44 AM (24 years ago)
Author:
aubourg
Message:

install target

Location:
trunk/ArchTOIPipe
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Makefile.in

    r1732 r1745  
    55exec_prefix = @exec_prefix@
    66bindir = @bindir@
     7libdir = @libdir@
    78CXX=@CXX@
    89AR=@AR@
     
    6162endif
    6263
    63 default:
    64         echo "no program specified"
     64default: build_kernel build_processors build_sophya
     65        echo "pipe libs built"
     66
     67install:  default
     68        mkdir -p $(libdir)
     69        mkdir -p $(prefix)/include
     70        $(INSTALL) kernel/libatkern.a $(libdir)/
     71        $(INSTALL) $(srcdir)/kernel/*.h $(prefix)/include
     72        $(INSTALL) processors/libatproc.a $(libdir)/
     73        $(INSTALL) $(srcdir)/processors/*.h $(prefix)/include
     74        if [ -f sophya/libatsop.a ]; then \
     75          $(INSTALL) sophya/libatsop.a $(libdir)/; \
     76          $(INSTALL) $(srcdir)/sophya/*.h $(prefix)/include; \
     77        fi
    6578
    6679clean:
  • trunk/ArchTOIPipe/configure

    r1738 r1745  
    546546
    547547if test `uname` = Linux -a -f /usr/bin/g++; then
    548   CXX=g++
     548  CXX=/usr/bin/g++
    549549fi
    550550
     
    986986fi
    987987 
     988ac_aux_dir=
     989for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
     990  if test -f $ac_dir/install-sh; then
     991    ac_aux_dir=$ac_dir
     992    ac_install_sh="$ac_aux_dir/install-sh -c"
     993    break
     994  elif test -f $ac_dir/install.sh; then
     995    ac_aux_dir=$ac_dir
     996    ac_install_sh="$ac_aux_dir/install.sh -c"
     997    break
     998  fi
     999done
     1000if test -z "$ac_aux_dir"; then
     1001  { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
     1002fi
     1003ac_config_guess=$ac_aux_dir/config.guess
     1004ac_config_sub=$ac_aux_dir/config.sub
     1005ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
     1006
     1007# Find a good install program.  We prefer a C program (faster),
     1008# so one script is as good as another.  But avoid the broken or
     1009# incompatible versions:
     1010# SysV /etc/install, /usr/sbin/install
     1011# SunOS /usr/etc/install
     1012# IRIX /sbin/install
     1013# AIX /bin/install
     1014# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
     1015# AFS /usr/afsws/bin/install, which mishandles nonexistent args
     1016# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
     1017# ./install, which can be erroneously created by make from ./install.sh.
     1018echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
     1019echo "configure:1020: checking for a BSD compatible install" >&5
     1020if test -z "$INSTALL"; then
     1021if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     1022  echo $ac_n "(cached) $ac_c" 1>&6
     1023else
     1024    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     1025  for ac_dir in $PATH; do
     1026    # Account for people who put trailing slashes in PATH elements.
     1027    case "$ac_dir/" in
     1028    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     1029    *)
     1030      # OSF1 and SCO ODT 3.0 have their own names for install.
     1031      # Don't use installbsd from OSF since it installs stuff as root
     1032      # by default.
     1033      for ac_prog in ginstall scoinst install; do
     1034        if test -f $ac_dir/$ac_prog; then
     1035          if test $ac_prog = install &&
     1036            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     1037            # AIX install.  It has an incompatible calling convention.
     1038            :
     1039          else
     1040            ac_cv_path_install="$ac_dir/$ac_prog -c"
     1041            break 2
     1042          fi
     1043        fi
     1044      done
     1045      ;;
     1046    esac
     1047  done
     1048  IFS="$ac_save_IFS"
     1049
     1050fi
     1051  if test "${ac_cv_path_install+set}" = set; then
     1052    INSTALL="$ac_cv_path_install"
     1053  else
     1054    # As a last resort, use the slow shell script.  We don't cache a
     1055    # path for INSTALL within a source directory, because that will
     1056    # break other packages using the cache if that directory is
     1057    # removed, or if the path is relative.
     1058    INSTALL="$ac_install_sh"
     1059  fi
     1060fi
     1061echo "$ac_t""$INSTALL" 1>&6
     1062
     1063# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
     1064# It thinks the first close brace ends the variable substitution.
     1065test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
     1066
     1067test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
     1068
     1069test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
     1070
    9881071
    9891072if test $GCC = "yes"; then
     
    9951078
    9961079echo $ac_n "checking size of short""... $ac_c" 1>&6
    997 echo "configure:998: checking size of short" >&5
     1080echo "configure:1081: checking size of short" >&5
    9981081if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then
    9991082  echo $ac_n "(cached) $ac_c" 1>&6
     
    10031086else
    10041087  cat > conftest.$ac_ext <<EOF
    1005 #line 1006 "configure"
     1088#line 1089 "configure"
    10061089#include "confdefs.h"
    10071090#include <stdio.h>
     
    10141097}
    10151098EOF
    1016 if { (eval echo configure:1017: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1099if { (eval echo configure:1100: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    10171100then
    10181101  ac_cv_sizeof_short=`cat conftestval`
     
    10341117
    10351118echo $ac_n "checking size of int""... $ac_c" 1>&6
    1036 echo "configure:1037: checking size of int" >&5
     1119echo "configure:1120: checking size of int" >&5
    10371120if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
    10381121  echo $ac_n "(cached) $ac_c" 1>&6
     
    10421125else
    10431126  cat > conftest.$ac_ext <<EOF
    1044 #line 1045 "configure"
     1127#line 1128 "configure"
    10451128#include "confdefs.h"
    10461129#include <stdio.h>
     
    10531136}
    10541137EOF
    1055 if { (eval echo configure:1056: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1138if { (eval echo configure:1139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    10561139then
    10571140  ac_cv_sizeof_int=`cat conftestval`
     
    10731156
    10741157echo $ac_n "checking size of long""... $ac_c" 1>&6
    1075 echo "configure:1076: checking size of long" >&5
     1158echo "configure:1159: checking size of long" >&5
    10761159if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
    10771160  echo $ac_n "(cached) $ac_c" 1>&6
     
    10811164else
    10821165  cat > conftest.$ac_ext <<EOF
    1083 #line 1084 "configure"
     1166#line 1167 "configure"
    10841167#include "confdefs.h"
    10851168#include <stdio.h>
     
    10921175}
    10931176EOF
    1094 if { (eval echo configure:1095: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1177if { (eval echo configure:1178: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    10951178then
    10961179  ac_cv_sizeof_long=`cat conftestval`
     
    11121195
    11131196echo $ac_n "checking size of long long""... $ac_c" 1>&6
    1114 echo "configure:1115: checking size of long long" >&5
     1197echo "configure:1198: checking size of long long" >&5
    11151198if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then
    11161199  echo $ac_n "(cached) $ac_c" 1>&6
     
    11201203else
    11211204  cat > conftest.$ac_ext <<EOF
    1122 #line 1123 "configure"
     1205#line 1206 "configure"
    11231206#include "confdefs.h"
    11241207#include <stdio.h>
     
    11311214}
    11321215EOF
    1133 if { (eval echo configure:1134: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1216if { (eval echo configure:1217: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    11341217then
    11351218  ac_cv_sizeof_long_long=`cat conftestval`
     
    11511234
    11521235echo $ac_n "checking size of float""... $ac_c" 1>&6
    1153 echo "configure:1154: checking size of float" >&5
     1236echo "configure:1237: checking size of float" >&5
    11541237if eval "test \"`echo '$''{'ac_cv_sizeof_float'+set}'`\" = set"; then
    11551238  echo $ac_n "(cached) $ac_c" 1>&6
     
    11591242else
    11601243  cat > conftest.$ac_ext <<EOF
    1161 #line 1162 "configure"
     1244#line 1245 "configure"
    11621245#include "confdefs.h"
    11631246#include <stdio.h>
     
    11701253}
    11711254EOF
    1172 if { (eval echo configure:1173: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1255if { (eval echo configure:1256: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    11731256then
    11741257  ac_cv_sizeof_float=`cat conftestval`
     
    11901273
    11911274echo $ac_n "checking size of double""... $ac_c" 1>&6
    1192 echo "configure:1193: checking size of double" >&5
     1275echo "configure:1276: checking size of double" >&5
    11931276if eval "test \"`echo '$''{'ac_cv_sizeof_double'+set}'`\" = set"; then
    11941277  echo $ac_n "(cached) $ac_c" 1>&6
     
    11981281else
    11991282  cat > conftest.$ac_ext <<EOF
    1200 #line 1201 "configure"
     1283#line 1284 "configure"
    12011284#include "confdefs.h"
    12021285#include <stdio.h>
     
    12091292}
    12101293EOF
    1211 if { (eval echo configure:1212: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1294if { (eval echo configure:1295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    12121295then
    12131296  ac_cv_sizeof_double=`cat conftestval`
     
    12291312
    12301313echo $ac_n "checking size of long double""... $ac_c" 1>&6
    1231 echo "configure:1232: checking size of long double" >&5
     1314echo "configure:1315: checking size of long double" >&5
    12321315if eval "test \"`echo '$''{'ac_cv_sizeof_long_double'+set}'`\" = set"; then
    12331316  echo $ac_n "(cached) $ac_c" 1>&6
     
    12371320else
    12381321  cat > conftest.$ac_ext <<EOF
    1239 #line 1240 "configure"
     1322#line 1323 "configure"
    12401323#include "confdefs.h"
    12411324#include <stdio.h>
     
    12481331}
    12491332EOF
    1250 if { (eval echo configure:1251: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1333if { (eval echo configure:1334: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    12511334then
    12521335  ac_cv_sizeof_long_double=`cat conftestval`
     
    12701353
    12711354echo $ac_n "checking "for cfitsio lib"""... $ac_c" 1>&6
    1272 echo "configure:1273: checking "for cfitsio lib"" >&5
     1355echo "configure:1356: checking "for cfitsio lib"" >&5
    12731356MACHDIR=`uname`-$CXX
    12741357if test -f $ARCHBASEREP/$MACHDIR/Libs/libcfitsio.a; then
     
    12971380
    12981381echo $ac_n "checking "for cfitsio includes"""... $ac_c" 1>&6
    1299 echo "configure:1300: checking "for cfitsio includes"" >&5
     1382echo "configure:1383: checking "for cfitsio includes"" >&5
    13001383if test -f $CFITSIODIR/fitsio.h; then
    13011384  cfitsincdir='-I$(CFITSIODIR)'
     
    13111394
    13121395echo $ac_n "checking for sin in -lm""... $ac_c" 1>&6
    1313 echo "configure:1314: checking for sin in -lm" >&5
     1396echo "configure:1397: checking for sin in -lm" >&5
    13141397ac_lib_var=`echo m'_'sin | sed 'y%./+-%__p_%'`
    13151398if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    13191402LIBS="-lm  $LIBS"
    13201403cat > conftest.$ac_ext <<EOF
    1321 #line 1322 "configure"
     1404#line 1405 "configure"
    13221405#include "confdefs.h"
    13231406/* Override any gcc2 internal prototype to avoid an error.  */
     
    13301413; return 0; }
    13311414EOF
    1332 if { (eval echo configure:1333: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1415if { (eval echo configure:1416: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    13331416  rm -rf conftest*
    13341417  eval "ac_cv_lib_$ac_lib_var=yes"
     
    13581441
    13591442echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6
    1360 echo "configure:1361: checking for pthread_create in -lpthread" >&5
     1443echo "configure:1444: checking for pthread_create in -lpthread" >&5
    13611444ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'`
    13621445if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    13661449LIBS="-lpthread  $LIBS"
    13671450cat > conftest.$ac_ext <<EOF
    1368 #line 1369 "configure"
     1451#line 1452 "configure"
    13691452#include "confdefs.h"
    13701453/* Override any gcc2 internal prototype to avoid an error.  */
     
    13771460; return 0; }
    13781461EOF
    1379 if { (eval echo configure:1380: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1462if { (eval echo configure:1463: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    13801463  rm -rf conftest*
    13811464  eval "ac_cv_lib_$ac_lib_var=yes"
     
    14051488
    14061489echo $ac_n "checking for scopy_ in -lblas""... $ac_c" 1>&6
    1407 echo "configure:1408: checking for scopy_ in -lblas" >&5
     1490echo "configure:1491: checking for scopy_ in -lblas" >&5
    14081491ac_lib_var=`echo blas'_'scopy_ | sed 'y%./+-%__p_%'`
    14091492if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    14131496LIBS="-lblas  $LIBS"
    14141497cat > conftest.$ac_ext <<EOF
    1415 #line 1416 "configure"
     1498#line 1499 "configure"
    14161499#include "confdefs.h"
    14171500/* Override any gcc2 internal prototype to avoid an error.  */
     
    14241507; return 0; }
    14251508EOF
    1426 if { (eval echo configure:1427: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1509if { (eval echo configure:1510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    14271510  rm -rf conftest*
    14281511  eval "ac_cv_lib_$ac_lib_var=yes"
     
    14521535
    14531536echo $ac_n "checking for s_copy in -lg2c""... $ac_c" 1>&6
    1454 echo "configure:1455: checking for s_copy in -lg2c" >&5
     1537echo "configure:1538: checking for s_copy in -lg2c" >&5
    14551538ac_lib_var=`echo g2c'_'s_copy | sed 'y%./+-%__p_%'`
    14561539if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    14601543LIBS="-lg2c  $LIBS"
    14611544cat > conftest.$ac_ext <<EOF
    1462 #line 1463 "configure"
     1545#line 1546 "configure"
    14631546#include "confdefs.h"
    14641547/* Override any gcc2 internal prototype to avoid an error.  */
     
    14711554; return 0; }
    14721555EOF
    1473 if { (eval echo configure:1474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1556if { (eval echo configure:1557: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    14741557  rm -rf conftest*
    14751558  eval "ac_cv_lib_$ac_lib_var=yes"
     
    15001583
    15011584echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
    1502 echo "configure:1503: checking how to run the C preprocessor" >&5
     1585echo "configure:1586: checking how to run the C preprocessor" >&5
    15031586# On Suns, sometimes $CPP names a directory.
    15041587if test -n "$CPP" && test -d "$CPP"; then
     
    15151598  # not just through cpp.
    15161599  cat > conftest.$ac_ext <<EOF
    1517 #line 1518 "configure"
     1600#line 1601 "configure"
    15181601#include "confdefs.h"
    15191602#include <assert.h>
     
    15211604EOF
    15221605ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1523 { (eval echo configure:1524: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1606{ (eval echo configure:1607: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    15241607ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    15251608if test -z "$ac_err"; then
     
    15321615  CPP="${CC-cc} -E -traditional-cpp"
    15331616  cat > conftest.$ac_ext <<EOF
    1534 #line 1535 "configure"
     1617#line 1618 "configure"
    15351618#include "confdefs.h"
    15361619#include <assert.h>
     
    15381621EOF
    15391622ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1540 { (eval echo configure:1541: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1623{ (eval echo configure:1624: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    15411624ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    15421625if test -z "$ac_err"; then
     
    15491632  CPP="${CC-cc} -nologo -E"
    15501633  cat > conftest.$ac_ext <<EOF
    1551 #line 1552 "configure"
     1634#line 1635 "configure"
    15521635#include "confdefs.h"
    15531636#include <assert.h>
     
    15551638EOF
    15561639ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1557 { (eval echo configure:1558: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1640{ (eval echo configure:1641: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    15581641ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    15591642if test -z "$ac_err"; then
     
    15801663
    15811664echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
    1582 echo "configure:1583: checking for ANSI C header files" >&5
     1665echo "configure:1666: checking for ANSI C header files" >&5
    15831666if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    15841667  echo $ac_n "(cached) $ac_c" 1>&6
    15851668else
    15861669  cat > conftest.$ac_ext <<EOF
    1587 #line 1588 "configure"
     1670#line 1671 "configure"
    15881671#include "confdefs.h"
    15891672#include <stdlib.h>
     
    15931676EOF
    15941677ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1595 { (eval echo configure:1596: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1678{ (eval echo configure:1679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    15961679ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    15971680if test -z "$ac_err"; then
     
    16101693  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    16111694cat > conftest.$ac_ext <<EOF
    1612 #line 1613 "configure"
     1695#line 1696 "configure"
    16131696#include "confdefs.h"
    16141697#include <string.h>
     
    16281711  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    16291712cat > conftest.$ac_ext <<EOF
    1630 #line 1631 "configure"
     1713#line 1714 "configure"
    16311714#include "confdefs.h"
    16321715#include <stdlib.h>
     
    16491732else
    16501733  cat > conftest.$ac_ext <<EOF
    1651 #line 1652 "configure"
     1734#line 1735 "configure"
    16521735#include "confdefs.h"
    16531736#include <ctype.h>
     
    16601743
    16611744EOF
    1662 if { (eval echo configure:1663: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1745if { (eval echo configure:1746: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    16631746then
    16641747  :
     
    16871770ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    16881771echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    1689 echo "configure:1690: checking for $ac_hdr" >&5
     1772echo "configure:1773: checking for $ac_hdr" >&5
    16901773if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    16911774  echo $ac_n "(cached) $ac_c" 1>&6
    16921775else
    16931776  cat > conftest.$ac_ext <<EOF
    1694 #line 1695 "configure"
     1777#line 1778 "configure"
    16951778#include "confdefs.h"
    16961779#include <$ac_hdr>
    16971780EOF
    16981781ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1699 { (eval echo configure:1700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1782{ (eval echo configure:1783: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    17001783ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    17011784if test -z "$ac_err"; then
     
    18281911
    18291912ac_given_srcdir=$srcdir
     1913ac_given_INSTALL="$INSTALL"
    18301914
    18311915trap 'rm -fr `echo "$outfiles conf.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
     
    18661950s%@AR@%$AR%g
    18671951s%@RANLIB@%$RANLIB%g
     1952s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
     1953s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
     1954s%@INSTALL_DATA@%$INSTALL_DATA%g
    18681955s%@gcc@%$gcc%g
    18691956s%@cfitslibdir@%$cfitslibdir%g
     
    19462033  esac
    19472034
     2035  case "$ac_given_INSTALL" in
     2036  [/$]*) INSTALL="$ac_given_INSTALL" ;;
     2037  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
     2038  esac
    19482039
    19492040  echo creating "$ac_file"
     
    19612052s%@srcdir@%$srcdir%g
    19622053s%@top_srcdir@%$top_srcdir%g
     2054s%@INSTALL@%$INSTALL%g
    19632055" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
    19642056fi; done
  • trunk/ArchTOIPipe/configure.in

    r1738 r1745  
    2525AC_PATH_PROG(AR, ar, /usr/bin/ar, /usr/bin:$PATH)
    2626AC_PATH_PROG(RANLIB, ranlib, /usr/bin/ranlib, /usr/bin:$PATH)
     27AC_PROG_INSTALL
    2728
    2829if test $GCC = "yes"; then
Note: See TracChangeset for help on using the changeset viewer.