/[public]/psiconv/trunk/configure
ViewVC logotype

Diff of /psiconv/trunk/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 49 Revision 66
473# AIX cpp loses on an empty file, so make sure it contains at least a newline. 473# AIX cpp loses on an empty file, so make sure it contains at least a newline.
474echo > confdefs.h 474echo > confdefs.h
475 475
476# A filename unique to this package, relative to the directory that 476# A filename unique to this package, relative to the directory that
477# configure is in, which we can look for to find out if srcdir is correct. 477# configure is in, which we can look for to find out if srcdir is correct.
478ac_unique_file=psiconv 478ac_unique_file=lib/psiconv
479 479
480# Find the source files, if location was not specified. 480# Find the source files, if location was not specified.
481if test -z "$srcdir"; then 481if test -z "$srcdir"; then
482 ac_srcdir_defaulted=yes 482 ac_srcdir_defaulted=yes
483 # Try the directory containing this script, then its parent. 483 # Try the directory containing this script, then its parent.
713fi 713fi
714 714
715 715
716PACKAGE=psiconv 716PACKAGE=psiconv
717 717
718VERSION=0.6.1 718VERSION=0.7.0
719 719
720if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then 720if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
721 { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } 721 { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
722fi 722fi
723cat >> confdefs.h <<EOF 723cat >> confdefs.h <<EOF
1550else 1550else
1551 IMAGEMAGICK='yes' 1551 IMAGEMAGICK='yes'
1552fi 1552fi
1553 1553
1554if test x"$IMAGEMAGICK" != xno ; then 1554if test x"$IMAGEMAGICK" != xno ; then
1555 echo $ac_n "checking for ConstituteImage in -lMagick""... $ac_c" 1>&6 1555 # Extract the first word of "Magick-config", so it can be a program name with args.
1556echo "configure:1557: checking for ConstituteImage in -lMagick" >&5 1556set dummy Magick-config; ac_word=$2
1557ac_lib_var=`echo Magick'_'ConstituteImage | sed 'y%./+-%__p_%'` 1557echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1558echo "configure:1559: checking for $ac_word" >&5
1558if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 1559if eval "test \"`echo '$''{'ac_cv_prog_IMAGEMAGICK'+set}'`\" = set"; then
1559 echo $ac_n "(cached) $ac_c" 1>&6 1560 echo $ac_n "(cached) $ac_c" 1>&6
1560else 1561else
1561 ac_save_LIBS="$LIBS" 1562 if test -n "$IMAGEMAGICK"; then
1562LIBS="-lMagick $LIBS" 1563 ac_cv_prog_IMAGEMAGICK="$IMAGEMAGICK" # Let the user override the test.
1564else
1565 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1566 ac_dummy="$PATH"
1567 for ac_dir in $ac_dummy; do
1568 test -z "$ac_dir" && ac_dir=.
1569 if test -f $ac_dir/$ac_word; then
1570 ac_cv_prog_IMAGEMAGICK="yes"
1571 break
1572 fi
1573 done
1574 IFS="$ac_save_ifs"
1575 test -z "$ac_cv_prog_IMAGEMAGICK" && ac_cv_prog_IMAGEMAGICK="no"
1576fi
1577fi
1578IMAGEMAGICK="$ac_cv_prog_IMAGEMAGICK"
1579if test -n "$IMAGEMAGICK"; then
1580 echo "$ac_t""$IMAGEMAGICK" 1>&6
1581else
1582 echo "$ac_t""no" 1>&6
1583fi
1584
1585 if test x"$IMAGEMAGICK" != xno ; then
1586 CFLAGS_OLD="$CFLAGS"
1587 CPPFLAGS_OLD="$CPPFLAGS"
1588 LDFLAGS_OLD="$LDFLAGS"
1589 LIBS_OLD="$LIBS"
1590 CFLAGS="$CFLAGS `Magick-config --cflags`"
1591 CPPFLAGS="$CPPFLAGS `Magick-config --cppflags`"
1592 LDFLAGS="$LDFLAGS `Magick-config --ldflags`"
1593 LIBS="$LIBS `Magick-config --libs`"
1594
1595 echo $ac_n "checking whether GetMagickInfo works""... $ac_c" 1>&6
1596echo "configure:1597: checking whether GetMagickInfo works" >&5
1597 if test "$cross_compiling" = yes; then
1598 IMAGEMAGICK=yes
1599else
1563cat > conftest.$ac_ext <<EOF 1600 cat > conftest.$ac_ext <<EOF
1564#line 1565 "configure" 1601#line 1602 "configure"
1565#include "confdefs.h" 1602#include "confdefs.h"
1566/* Override any gcc2 internal prototype to avoid an error. */ 1603 #include <magick/magick.h>
1567/* We use char because int might match the return type of a gcc2 1604 #include <magick/config.h>
1568 builtin and then its argument prototype would still apply. */ 1605 #include <stdio.h>
1569char ConstituteImage(); 1606 extern void OpenModules(void);
1570 1607 int main(void) { GetMagickInfo(NULL);
1571int main() { 1608 #if defined(HasLTDL)
1572ConstituteImage() 1609 OpenModules();
1573; return 0; } 1610 #endif
1611 return (NULL == GetMagickInfo(NULL)); }
1574EOF 1612EOF
1575if { (eval echo configure:1576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1613if { (eval echo configure:1614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
1576 rm -rf conftest* 1614then
1577 eval "ac_cv_lib_$ac_lib_var=yes" 1615 IMAGEMAGICK=yes
1578else 1616else
1579 echo "configure: failed program was:" >&5 1617 echo "configure: failed program was:" >&5
1580 cat conftest.$ac_ext >&5 1618 cat conftest.$ac_ext >&5
1581 rm -rf conftest* 1619 rm -fr conftest*
1582 eval "ac_cv_lib_$ac_lib_var=no" 1620 IMAGEMAGICK=no
1583fi 1621fi
1584rm -f conftest* 1622rm -fr conftest*
1585LIBS="$ac_save_LIBS"
1586
1587fi 1623fi
1588if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
1589 echo "$ac_t""yes" 1>&6
1590 IMAGEMAGICK=yes
1591else
1592 echo "$ac_t""no" 1>&6
1593IMAGEMAGICK=no
1594fi
1595 1624
1625 echo "$ac_t""$IMAGEMAGICK" 1>&6
1626 LDFLAGS="$LDFLAGS_OLD"
1627 LIBS="$LIBS_OLD"
1596 if test x"$IMAGEMAGICK" = xno ; then 1628 if test x"$IMAGEMAGICK" = xno ; then
1597 echo "configure: warning: ImageMagick support disabled!" 1>&2 1629 CFLAGS="$CFLAGS_OLD"
1630 CPPFLAGS="$CPPFLAGS_OLD"
1631 fi
1598 fi 1632 fi
1599fi 1633fi
1600if test x"$IMAGEMAGICK" = xyes ; then 1634if test x"$IMAGEMAGICK" = xyes ; then
1601 LIB_MAGICK=-lMagick 1635 LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`"
1602 cat >> confdefs.h <<\EOF 1636 cat >> confdefs.h <<\EOF
1603#define IMAGEMAGICK 1 1637#define IMAGEMAGICK 1
1604EOF 1638EOF
1605 1639
1606else 1640else
1607 LIB_MAGICK= 1641 LIB_MAGICK=
1608fi 1642fi
1609 1643
1610 1644
1611echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 1645echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
1612echo "configure:1613: checking how to run the C preprocessor" >&5 1646echo "configure:1647: checking how to run the C preprocessor" >&5
1613# On Suns, sometimes $CPP names a directory. 1647# On Suns, sometimes $CPP names a directory.
1614if test -n "$CPP" && test -d "$CPP"; then 1648if test -n "$CPP" && test -d "$CPP"; then
1615 CPP= 1649 CPP=
1616fi 1650fi
1617if test -z "$CPP"; then 1651if test -z "$CPP"; then
1622 # substituted into the Makefile and "${CC-cc}" will confuse make. 1656 # substituted into the Makefile and "${CC-cc}" will confuse make.
1623 CPP="${CC-cc} -E" 1657 CPP="${CC-cc} -E"
1624 # On the NeXT, cc -E runs the code through the compiler's parser, 1658 # On the NeXT, cc -E runs the code through the compiler's parser,
1625 # not just through cpp. 1659 # not just through cpp.
1626 cat > conftest.$ac_ext <<EOF 1660 cat > conftest.$ac_ext <<EOF
1627#line 1628 "configure" 1661#line 1662 "configure"
1628#include "confdefs.h" 1662#include "confdefs.h"
1629#include <assert.h> 1663#include <assert.h>
1630Syntax Error 1664Syntax Error
1631EOF 1665EOF
1632ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1666ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1633{ (eval echo configure:1634: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1667{ (eval echo configure:1668: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1634ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1668ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1635if test -z "$ac_err"; then 1669if test -z "$ac_err"; then
1636 : 1670 :
1637else 1671else
1638 echo "$ac_err" >&5 1672 echo "$ac_err" >&5
1639 echo "configure: failed program was:" >&5 1673 echo "configure: failed program was:" >&5
1640 cat conftest.$ac_ext >&5 1674 cat conftest.$ac_ext >&5
1641 rm -rf conftest* 1675 rm -rf conftest*
1642 CPP="${CC-cc} -E -traditional-cpp" 1676 CPP="${CC-cc} -E -traditional-cpp"
1643 cat > conftest.$ac_ext <<EOF 1677 cat > conftest.$ac_ext <<EOF
1644#line 1645 "configure" 1678#line 1679 "configure"
1645#include "confdefs.h" 1679#include "confdefs.h"
1646#include <assert.h> 1680#include <assert.h>
1647Syntax Error 1681Syntax Error
1648EOF 1682EOF
1649ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1683ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1650{ (eval echo configure:1651: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1684{ (eval echo configure:1685: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1651ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1685ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1652if test -z "$ac_err"; then 1686if test -z "$ac_err"; then
1653 : 1687 :
1654else 1688else
1655 echo "$ac_err" >&5 1689 echo "$ac_err" >&5
1656 echo "configure: failed program was:" >&5 1690 echo "configure: failed program was:" >&5
1657 cat conftest.$ac_ext >&5 1691 cat conftest.$ac_ext >&5
1658 rm -rf conftest* 1692 rm -rf conftest*
1659 CPP="${CC-cc} -nologo -E" 1693 CPP="${CC-cc} -nologo -E"
1660 cat > conftest.$ac_ext <<EOF 1694 cat > conftest.$ac_ext <<EOF
1661#line 1662 "configure" 1695#line 1696 "configure"
1662#include "confdefs.h" 1696#include "confdefs.h"
1663#include <assert.h> 1697#include <assert.h>
1664Syntax Error 1698Syntax Error
1665EOF 1699EOF
1666ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1700ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1667{ (eval echo configure:1668: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1701{ (eval echo configure:1702: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1668ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1702ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1669if test -z "$ac_err"; then 1703if test -z "$ac_err"; then
1670 : 1704 :
1671else 1705else
1672 echo "$ac_err" >&5 1706 echo "$ac_err" >&5
1687 ac_cv_prog_CPP="$CPP" 1721 ac_cv_prog_CPP="$CPP"
1688fi 1722fi
1689echo "$ac_t""$CPP" 1>&6 1723echo "$ac_t""$CPP" 1>&6
1690 1724
1691echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 1725echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
1692echo "configure:1693: checking for ANSI C header files" >&5 1726echo "configure:1727: checking for ANSI C header files" >&5
1693if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 1727if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
1694 echo $ac_n "(cached) $ac_c" 1>&6 1728 echo $ac_n "(cached) $ac_c" 1>&6
1695else 1729else
1696 cat > conftest.$ac_ext <<EOF 1730 cat > conftest.$ac_ext <<EOF
1697#line 1698 "configure" 1731#line 1732 "configure"
1698#include "confdefs.h" 1732#include "confdefs.h"
1699#include <stdlib.h> 1733#include <stdlib.h>
1700#include <stdarg.h> 1734#include <stdarg.h>
1701#include <string.h> 1735#include <string.h>
1702#include <float.h> 1736#include <float.h>
1703EOF 1737EOF
1704ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1738ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1705{ (eval echo configure:1706: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1739{ (eval echo configure:1740: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1706ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1740ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1707if test -z "$ac_err"; then 1741if test -z "$ac_err"; then
1708 rm -rf conftest* 1742 rm -rf conftest*
1709 ac_cv_header_stdc=yes 1743 ac_cv_header_stdc=yes
1710else 1744else
1717rm -f conftest* 1751rm -f conftest*
1718 1752
1719if test $ac_cv_header_stdc = yes; then 1753if test $ac_cv_header_stdc = yes; then
1720 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 1754 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
1721cat > conftest.$ac_ext <<EOF 1755cat > conftest.$ac_ext <<EOF
1722#line 1723 "configure" 1756#line 1757 "configure"
1723#include "confdefs.h" 1757#include "confdefs.h"
1724#include <string.h> 1758#include <string.h>
1725EOF 1759EOF
1726if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 1760if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
1727 egrep "memchr" >/dev/null 2>&1; then 1761 egrep "memchr" >/dev/null 2>&1; then
1735fi 1769fi
1736 1770
1737if test $ac_cv_header_stdc = yes; then 1771if test $ac_cv_header_stdc = yes; then
1738 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 1772 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
1739cat > conftest.$ac_ext <<EOF 1773cat > conftest.$ac_ext <<EOF
1740#line 1741 "configure" 1774#line 1775 "configure"
1741#include "confdefs.h" 1775#include "confdefs.h"
1742#include <stdlib.h> 1776#include <stdlib.h>
1743EOF 1777EOF
1744if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 1778if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
1745 egrep "free" >/dev/null 2>&1; then 1779 egrep "free" >/dev/null 2>&1; then
1756 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. 1790 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
1757if test "$cross_compiling" = yes; then 1791if test "$cross_compiling" = yes; then
1758 : 1792 :
1759else 1793else
1760 cat > conftest.$ac_ext <<EOF 1794 cat > conftest.$ac_ext <<EOF
1761#line 1762 "configure" 1795#line 1796 "configure"
1762#include "confdefs.h" 1796#include "confdefs.h"
1763#include <ctype.h> 1797#include <ctype.h>
1764#define ISLOWER(c) ('a' <= (c) && (c) <= 'z') 1798#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
1765#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) 1799#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
1766#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) 1800#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
1767int main () { int i; for (i = 0; i < 256; i++) 1801int main () { int i; for (i = 0; i < 256; i++)
1768if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); 1802if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
1769exit (0); } 1803exit (0); }
1770 1804
1771EOF 1805EOF
1772if { (eval echo configure:1773: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 1806if { (eval echo configure:1807: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
1773then 1807then
1774 : 1808 :
1775else 1809else
1776 echo "configure: failed program was:" >&5 1810 echo "configure: failed program was:" >&5
1777 cat conftest.$ac_ext >&5 1811 cat conftest.$ac_ext >&5
1794 1828
1795for ac_hdr in unistd.h 1829for ac_hdr in unistd.h
1796do 1830do
1797ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1831ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
1798echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1832echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
1799echo "configure:1800: checking for $ac_hdr" >&5 1833echo "configure:1834: checking for $ac_hdr" >&5
1800if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1834if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
1801 echo $ac_n "(cached) $ac_c" 1>&6 1835 echo $ac_n "(cached) $ac_c" 1>&6
1802else 1836else
1803 cat > conftest.$ac_ext <<EOF 1837 cat > conftest.$ac_ext <<EOF
1804#line 1805 "configure" 1838#line 1839 "configure"
1805#include "confdefs.h" 1839#include "confdefs.h"
1806#include <$ac_hdr> 1840#include <$ac_hdr>
1807EOF 1841EOF
1808ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1842ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1809{ (eval echo configure:1810: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1843{ (eval echo configure:1844: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1810ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1844ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1811if test -z "$ac_err"; then 1845if test -z "$ac_err"; then
1812 rm -rf conftest* 1846 rm -rf conftest*
1813 eval "ac_cv_header_$ac_safe=yes" 1847 eval "ac_cv_header_$ac_safe=yes"
1814else 1848else
1832fi 1866fi
1833done 1867done
1834 1868
1835 1869
1836echo $ac_n "checking for working const""... $ac_c" 1>&6 1870echo $ac_n "checking for working const""... $ac_c" 1>&6
1837echo "configure:1838: checking for working const" >&5 1871echo "configure:1872: checking for working const" >&5
1838if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 1872if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
1839 echo $ac_n "(cached) $ac_c" 1>&6 1873 echo $ac_n "(cached) $ac_c" 1>&6
1840else 1874else
1841 cat > conftest.$ac_ext <<EOF 1875 cat > conftest.$ac_ext <<EOF
1842#line 1843 "configure" 1876#line 1877 "configure"
1843#include "confdefs.h" 1877#include "confdefs.h"
1844 1878
1845int main() { 1879int main() {
1846 1880
1847/* Ultrix mips cc rejects this. */ 1881/* Ultrix mips cc rejects this. */
1886 const int foo = 10; 1920 const int foo = 10;
1887} 1921}
1888 1922
1889; return 0; } 1923; return 0; }
1890EOF 1924EOF
1891if { (eval echo configure:1892: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1925if { (eval echo configure:1926: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
1892 rm -rf conftest* 1926 rm -rf conftest*
1893 ac_cv_c_const=yes 1927 ac_cv_c_const=yes
1894else 1928else
1895 echo "configure: failed program was:" >&5 1929 echo "configure: failed program was:" >&5
1896 cat conftest.$ac_ext >&5 1930 cat conftest.$ac_ext >&5
1907EOF 1941EOF
1908 1942
1909fi 1943fi
1910 1944
1911echo $ac_n "checking for size_t""... $ac_c" 1>&6 1945echo $ac_n "checking for size_t""... $ac_c" 1>&6
1912echo "configure:1913: checking for size_t" >&5 1946echo "configure:1947: checking for size_t" >&5
1913if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 1947if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
1914 echo $ac_n "(cached) $ac_c" 1>&6 1948 echo $ac_n "(cached) $ac_c" 1>&6
1915else 1949else
1916 cat > conftest.$ac_ext <<EOF 1950 cat > conftest.$ac_ext <<EOF
1917#line 1918 "configure" 1951#line 1952 "configure"
1918#include "confdefs.h" 1952#include "confdefs.h"
1919#include <sys/types.h> 1953#include <sys/types.h>
1920#if STDC_HEADERS 1954#if STDC_HEADERS
1921#include <stdlib.h> 1955#include <stdlib.h>
1922#include <stddef.h> 1956#include <stddef.h>
1942fi 1976fi
1943 1977
1944 1978
1945 1979
1946echo $ac_n "checking size of char""... $ac_c" 1>&6 1980echo $ac_n "checking size of char""... $ac_c" 1>&6
1947echo "configure:1948: checking size of char" >&5 1981echo "configure:1982: checking size of char" >&5
1948if eval "test \"`echo '$''{'ac_cv_sizeof_char'+set}'`\" = set"; then 1982if eval "test \"`echo '$''{'ac_cv_sizeof_char'+set}'`\" = set"; then
1949 echo $ac_n "(cached) $ac_c" 1>&6 1983 echo $ac_n "(cached) $ac_c" 1>&6
1950else 1984else
1951 if test "$cross_compiling" = yes; then 1985 if test "$cross_compiling" = yes; then
1952 ac_cv_sizeof_char=1 1986 ac_cv_sizeof_char=1
1953else 1987else
1954 cat > conftest.$ac_ext <<EOF 1988 cat > conftest.$ac_ext <<EOF
1955#line 1956 "configure" 1989#line 1990 "configure"
1956#include "confdefs.h" 1990#include "confdefs.h"
1957#include <stdio.h> 1991#include <stdio.h>
1958main() 1992main()
1959{ 1993{
1960 FILE *f=fopen("conftestval", "w"); 1994 FILE *f=fopen("conftestval", "w");
1961 if (!f) exit(1); 1995 if (!f) exit(1);
1962 fprintf(f, "%d\n", sizeof(char)); 1996 fprintf(f, "%d\n", sizeof(char));
1963 exit(0); 1997 exit(0);
1964} 1998}
1965EOF 1999EOF
1966if { (eval echo configure:1967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2000if { (eval echo configure:2001: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
1967then 2001then
1968 ac_cv_sizeof_char=`cat conftestval` 2002 ac_cv_sizeof_char=`cat conftestval`
1969else 2003else
1970 echo "configure: failed program was:" >&5 2004 echo "configure: failed program was:" >&5
1971 cat conftest.$ac_ext >&5 2005 cat conftest.$ac_ext >&5
1981#define SIZEOF_CHAR $ac_cv_sizeof_char 2015#define SIZEOF_CHAR $ac_cv_sizeof_char
1982EOF 2016EOF
1983 2017
1984 2018
1985echo $ac_n "checking size of short""... $ac_c" 1>&6 2019echo $ac_n "checking size of short""... $ac_c" 1>&6
1986echo "configure:1987: checking size of short" >&5 2020echo "configure:2021: checking size of short" >&5
1987if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then 2021if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then
1988 echo $ac_n "(cached) $ac_c" 1>&6 2022 echo $ac_n "(cached) $ac_c" 1>&6
1989else 2023else
1990 if test "$cross_compiling" = yes; then 2024 if test "$cross_compiling" = yes; then
1991 ac_cv_sizeof_short=1 2025 ac_cv_sizeof_short=1
1992else 2026else
1993 cat > conftest.$ac_ext <<EOF 2027 cat > conftest.$ac_ext <<EOF
1994#line 1995 "configure" 2028#line 2029 "configure"
1995#include "confdefs.h" 2029#include "confdefs.h"
1996#include <stdio.h> 2030#include <stdio.h>
1997main() 2031main()
1998{ 2032{
1999 FILE *f=fopen("conftestval", "w"); 2033 FILE *f=fopen("conftestval", "w");
2000 if (!f) exit(1); 2034 if (!f) exit(1);
2001 fprintf(f, "%d\n", sizeof(short)); 2035 fprintf(f, "%d\n", sizeof(short));
2002 exit(0); 2036 exit(0);
2003} 2037}
2004EOF 2038EOF
2005if { (eval echo configure:2006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2039if { (eval echo configure:2040: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
2006then 2040then
2007 ac_cv_sizeof_short=`cat conftestval` 2041 ac_cv_sizeof_short=`cat conftestval`
2008else 2042else
2009 echo "configure: failed program was:" >&5 2043 echo "configure: failed program was:" >&5
2010 cat conftest.$ac_ext >&5 2044 cat conftest.$ac_ext >&5
2020#define SIZEOF_SHORT $ac_cv_sizeof_short 2054#define SIZEOF_SHORT $ac_cv_sizeof_short
2021EOF 2055EOF
2022 2056
2023 2057
2024echo $ac_n "checking size of int""... $ac_c" 1>&6 2058echo $ac_n "checking size of int""... $ac_c" 1>&6
2025echo "configure:2026: checking size of int" >&5 2059echo "configure:2060: checking size of int" >&5
2026if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then 2060if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
2027 echo $ac_n "(cached) $ac_c" 1>&6 2061 echo $ac_n "(cached) $ac_c" 1>&6
2028else 2062else
2029 if test "$cross_compiling" = yes; then 2063 if test "$cross_compiling" = yes; then
2030 ac_cv_sizeof_int=2 2064 ac_cv_sizeof_int=2
2031else 2065else
2032 cat > conftest.$ac_ext <<EOF 2066 cat > conftest.$ac_ext <<EOF
2033#line 2034 "configure" 2067#line 2068 "configure"
2034#include "confdefs.h" 2068#include "confdefs.h"
2035#include <stdio.h> 2069#include <stdio.h>
2036main() 2070main()
2037{ 2071{
2038 FILE *f=fopen("conftestval", "w"); 2072 FILE *f=fopen("conftestval", "w");
2039 if (!f) exit(1); 2073 if (!f) exit(1);
2040 fprintf(f, "%d\n", sizeof(int)); 2074 fprintf(f, "%d\n", sizeof(int));
2041 exit(0); 2075 exit(0);
2042} 2076}
2043EOF 2077EOF
2044if { (eval echo configure:2045: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2078if { (eval echo configure:2079: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
2045then 2079then
2046 ac_cv_sizeof_int=`cat conftestval` 2080 ac_cv_sizeof_int=`cat conftestval`
2047else 2081else
2048 echo "configure: failed program was:" >&5 2082 echo "configure: failed program was:" >&5
2049 cat conftest.$ac_ext >&5 2083 cat conftest.$ac_ext >&5
2059#define SIZEOF_INT $ac_cv_sizeof_int 2093#define SIZEOF_INT $ac_cv_sizeof_int
2060EOF 2094EOF
2061 2095
2062 2096
2063echo $ac_n "checking size of long""... $ac_c" 1>&6 2097echo $ac_n "checking size of long""... $ac_c" 1>&6
2064echo "configure:2065: checking size of long" >&5 2098echo "configure:2099: checking size of long" >&5
2065if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then 2099if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
2066 echo $ac_n "(cached) $ac_c" 1>&6 2100 echo $ac_n "(cached) $ac_c" 1>&6
2067else 2101else
2068 if test "$cross_compiling" = yes; then 2102 if test "$cross_compiling" = yes; then
2069 ac_cv_sizeof_long=4 2103 ac_cv_sizeof_long=4
2070else 2104else
2071 cat > conftest.$ac_ext <<EOF 2105 cat > conftest.$ac_ext <<EOF
2072#line 2073 "configure" 2106#line 2107 "configure"
2073#include "confdefs.h" 2107#include "confdefs.h"
2074#include <stdio.h> 2108#include <stdio.h>
2075main() 2109main()
2076{ 2110{
2077 FILE *f=fopen("conftestval", "w"); 2111 FILE *f=fopen("conftestval", "w");
2078 if (!f) exit(1); 2112 if (!f) exit(1);
2079 fprintf(f, "%d\n", sizeof(long)); 2113 fprintf(f, "%d\n", sizeof(long));
2080 exit(0); 2114 exit(0);
2081} 2115}
2082EOF 2116EOF
2083if { (eval echo configure:2084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2117if { (eval echo configure:2118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
2084then 2118then
2085 ac_cv_sizeof_long=`cat conftestval` 2119 ac_cv_sizeof_long=`cat conftestval`
2086else 2120else
2087 echo "configure: failed program was:" >&5 2121 echo "configure: failed program was:" >&5
2088 cat conftest.$ac_ext >&5 2122 cat conftest.$ac_ext >&5
2099EOF 2133EOF
2100 2134
2101 2135
2102 2136
2103echo $ac_n "checking for an 8 bit integer type""... $ac_c" 1>&6 2137echo $ac_n "checking for an 8 bit integer type""... $ac_c" 1>&6
2104echo "configure:2105: checking for an 8 bit integer type" >&5 2138echo "configure:2139: checking for an 8 bit integer type" >&5
2105if test $ac_cv_sizeof_char -ge 1 ; then 2139if test $ac_cv_sizeof_char -ge 1 ; then
2106 INT_8_BIT=char 2140 INT_8_BIT=char
2107 echo "$ac_t""char" 1>&6 2141 echo "$ac_t""char" 1>&6
2108elif test $ac_cv_sizeof_short -ge 1 ; then 2142elif test $ac_cv_sizeof_short -ge 1 ; then
2109 INT_8_BIT=short 2143 INT_8_BIT=short
2117else 2151else
2118 { echo "configure: error: No integer type of at least 8 bits found" 1>&2; exit 1; } 2152 { echo "configure: error: No integer type of at least 8 bits found" 1>&2; exit 1; }
2119fi 2153fi
2120 2154
2121echo $ac_n "checking for a 16 bit integer type""... $ac_c" 1>&6 2155echo $ac_n "checking for a 16 bit integer type""... $ac_c" 1>&6
2122echo "configure:2123: checking for a 16 bit integer type" >&5 2156echo "configure:2157: checking for a 16 bit integer type" >&5
2123if test $ac_cv_sizeof_char -ge 2 ; then 2157if test $ac_cv_sizeof_char -ge 2 ; then
2124 INT_16_BIT=char 2158 INT_16_BIT=char
2125 echo "$ac_t""char" 1>&6 2159 echo "$ac_t""char" 1>&6
2126elif test $ac_cv_sizeof_short -ge 2 ; then 2160elif test $ac_cv_sizeof_short -ge 2 ; then
2127 INT_16_BIT=short 2161 INT_16_BIT=short
2135else 2169else
2136 { echo "configure: error: No integer type of at least 16 bits found" 1>&2; exit 1; } 2170 { echo "configure: error: No integer type of at least 16 bits found" 1>&2; exit 1; }
2137fi 2171fi
2138 2172
2139echo $ac_n "checking for a 32 bit integer type""... $ac_c" 1>&6 2173echo $ac_n "checking for a 32 bit integer type""... $ac_c" 1>&6
2140echo "configure:2141: checking for a 32 bit integer type" >&5 2174echo "configure:2175: checking for a 32 bit integer type" >&5
2141if test $ac_cv_sizeof_char -ge 4 ; then 2175if test $ac_cv_sizeof_char -ge 4 ; then
2142 INT_32_BIT=char 2176 INT_32_BIT=char
2143 echo "$ac_t""char" 1>&6 2177 echo "$ac_t""char" 1>&6
2144elif test $ac_cv_sizeof_short -ge 4 ; then 2178elif test $ac_cv_sizeof_short -ge 4 ; then
2145 INT_32_BIT=short 2179 INT_32_BIT=short
2157 2191
2158 2192
2159 2193
2160 2194
2161echo $ac_n "checking for vprintf""... $ac_c" 1>&6 2195echo $ac_n "checking for vprintf""... $ac_c" 1>&6
2162echo "configure:2163: checking for vprintf" >&5 2196echo "configure:2197: checking for vprintf" >&5
2163if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then 2197if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then
2164 echo $ac_n "(cached) $ac_c" 1>&6 2198 echo $ac_n "(cached) $ac_c" 1>&6
2165else 2199else
2166 cat > conftest.$ac_ext <<EOF 2200 cat > conftest.$ac_ext <<EOF
2167#line 2168 "configure" 2201#line 2202 "configure"
2168#include "confdefs.h" 2202#include "confdefs.h"
2169/* System header to define __stub macros and hopefully few prototypes, 2203/* System header to define __stub macros and hopefully few prototypes,
2170 which can conflict with char vprintf(); below. */ 2204 which can conflict with char vprintf(); below. */
2171#include <assert.h> 2205#include <assert.h>
2172/* Override any gcc2 internal prototype to avoid an error. */ 2206/* Override any gcc2 internal prototype to avoid an error. */
2185vprintf(); 2219vprintf();
2186#endif 2220#endif
2187 2221
2188; return 0; } 2222; return 0; }
2189EOF 2223EOF
2190if { (eval echo configure:2191: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2224if { (eval echo configure:2225: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2191 rm -rf conftest* 2225 rm -rf conftest*
2192 eval "ac_cv_func_vprintf=yes" 2226 eval "ac_cv_func_vprintf=yes"
2193else 2227else
2194 echo "configure: failed program was:" >&5 2228 echo "configure: failed program was:" >&5
2195 cat conftest.$ac_ext >&5 2229 cat conftest.$ac_ext >&5
2209 echo "$ac_t""no" 1>&6 2243 echo "$ac_t""no" 1>&6
2210fi 2244fi
2211 2245
2212if test "$ac_cv_func_vprintf" != yes; then 2246if test "$ac_cv_func_vprintf" != yes; then
2213echo $ac_n "checking for _doprnt""... $ac_c" 1>&6 2247echo $ac_n "checking for _doprnt""... $ac_c" 1>&6
2214echo "configure:2215: checking for _doprnt" >&5 2248echo "configure:2249: checking for _doprnt" >&5
2215if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then 2249if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then
2216 echo $ac_n "(cached) $ac_c" 1>&6 2250 echo $ac_n "(cached) $ac_c" 1>&6
2217else 2251else
2218 cat > conftest.$ac_ext <<EOF 2252 cat > conftest.$ac_ext <<EOF
2219#line 2220 "configure" 2253#line 2254 "configure"
2220#include "confdefs.h" 2254#include "confdefs.h"
2221/* System header to define __stub macros and hopefully few prototypes, 2255/* System header to define __stub macros and hopefully few prototypes,
2222 which can conflict with char _doprnt(); below. */ 2256 which can conflict with char _doprnt(); below. */
2223#include <assert.h> 2257#include <assert.h>
2224/* Override any gcc2 internal prototype to avoid an error. */ 2258/* Override any gcc2 internal prototype to avoid an error. */
2237_doprnt(); 2271_doprnt();
2238#endif 2272#endif
2239 2273
2240; return 0; } 2274; return 0; }
2241EOF 2275EOF
2242if { (eval echo configure:2243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2276if { (eval echo configure:2277: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2243 rm -rf conftest* 2277 rm -rf conftest*
2244 eval "ac_cv_func__doprnt=yes" 2278 eval "ac_cv_func__doprnt=yes"
2245else 2279else
2246 echo "configure: failed program was:" >&5 2280 echo "configure: failed program was:" >&5
2247 cat conftest.$ac_ext >&5 2281 cat conftest.$ac_ext >&5
2264fi 2298fi
2265 2299
2266for ac_func in strdup 2300for ac_func in strdup
2267do 2301do
2268echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2302echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
2269echo "configure:2270: checking for $ac_func" >&5 2303echo "configure:2304: checking for $ac_func" >&5
2270if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2304if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
2271 echo $ac_n "(cached) $ac_c" 1>&6 2305 echo $ac_n "(cached) $ac_c" 1>&6
2272else 2306else
2273 cat > conftest.$ac_ext <<EOF 2307 cat > conftest.$ac_ext <<EOF
2274#line 2275 "configure" 2308#line 2309 "configure"
2275#include "confdefs.h" 2309#include "confdefs.h"
2276/* System header to define __stub macros and hopefully few prototypes, 2310/* System header to define __stub macros and hopefully few prototypes,
2277 which can conflict with char $ac_func(); below. */ 2311 which can conflict with char $ac_func(); below. */
2278#include <assert.h> 2312#include <assert.h>
2279/* Override any gcc2 internal prototype to avoid an error. */ 2313/* Override any gcc2 internal prototype to avoid an error. */
2292$ac_func(); 2326$ac_func();
2293#endif 2327#endif
2294 2328
2295; return 0; } 2329; return 0; }
2296EOF 2330EOF
2297if { (eval echo configure:2298: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2331if { (eval echo configure:2332: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2298 rm -rf conftest* 2332 rm -rf conftest*
2299 eval "ac_cv_func_$ac_func=yes" 2333 eval "ac_cv_func_$ac_func=yes"
2300else 2334else
2301 echo "configure: failed program was:" >&5 2335 echo "configure: failed program was:" >&5
2302 cat conftest.$ac_ext >&5 2336 cat conftest.$ac_ext >&5
2321 2355
2322 2356
2323for ac_func in getopt_long 2357for ac_func in getopt_long
2324do 2358do
2325echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2359echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
2326echo "configure:2327: checking for $ac_func" >&5 2360echo "configure:2361: checking for $ac_func" >&5
2327if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2361if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
2328 echo $ac_n "(cached) $ac_c" 1>&6 2362 echo $ac_n "(cached) $ac_c" 1>&6
2329else 2363else
2330 cat > conftest.$ac_ext <<EOF 2364 cat > conftest.$ac_ext <<EOF
2331#line 2332 "configure" 2365#line 2366 "configure"
2332#include "confdefs.h" 2366#include "confdefs.h"
2333/* System header to define __stub macros and hopefully few prototypes, 2367/* System header to define __stub macros and hopefully few prototypes,
2334 which can conflict with char $ac_func(); below. */ 2368 which can conflict with char $ac_func(); below. */
2335#include <assert.h> 2369#include <assert.h>
2336/* Override any gcc2 internal prototype to avoid an error. */ 2370/* Override any gcc2 internal prototype to avoid an error. */
2349$ac_func(); 2383$ac_func();
2350#endif 2384#endif
2351 2385
2352; return 0; } 2386; return 0; }
2353EOF 2387EOF
2354if { (eval echo configure:2355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2388if { (eval echo configure:2389: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2355 rm -rf conftest* 2389 rm -rf conftest*
2356 eval "ac_cv_func_$ac_func=yes" 2390 eval "ac_cv_func_$ac_func=yes"
2357else 2391else
2358 echo "configure: failed program was:" >&5 2392 echo "configure: failed program was:" >&5
2359 cat conftest.$ac_ext >&5 2393 cat conftest.$ac_ext >&5
2566done 2600done
2567 2601
2568ac_given_srcdir=$srcdir 2602ac_given_srcdir=$srcdir
2569ac_given_INSTALL="$INSTALL" 2603ac_given_INSTALL="$INSTALL"
2570 2604
2571trap 'rm -fr `echo "Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 2605trap 'rm -fr `echo "Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile program/Makefile program/psiconv/Makefile lib/psiconv/general.h formats/Makefile docs/Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
2572EOF 2606EOF
2573cat >> $CONFIG_STATUS <<EOF 2607cat >> $CONFIG_STATUS <<EOF
2574 2608
2575# Protect against being on the right side of a sed subst in config.status. 2609# Protect against being on the right side of a sed subst in config.status.
2576sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g; 2610sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
2624s%@RANLIB@%$RANLIB%g 2658s%@RANLIB@%$RANLIB%g
2625s%@CC@%$CC%g 2659s%@CC@%$CC%g
2626s%@LN_S@%$LN_S%g 2660s%@LN_S@%$LN_S%g
2627s%@LIBTOOL@%$LIBTOOL%g 2661s%@LIBTOOL@%$LIBTOOL%g
2628s%@cflags_set@%$cflags_set%g 2662s%@cflags_set@%$cflags_set%g
2663s%@IMAGEMAGICK@%$IMAGEMAGICK%g
2629s%@LIB_MAGICK@%$LIB_MAGICK%g 2664s%@LIB_MAGICK@%$LIB_MAGICK%g
2630s%@CPP@%$CPP%g 2665s%@CPP@%$CPP%g
2631s%@INT_8_BIT@%$INT_8_BIT%g 2666s%@INT_8_BIT@%$INT_8_BIT%g
2632s%@INT_16_BIT@%$INT_16_BIT%g 2667s%@INT_16_BIT@%$INT_16_BIT%g
2633s%@INT_32_BIT@%$INT_32_BIT%g 2668s%@INT_32_BIT@%$INT_32_BIT%g
2679fi 2714fi
2680EOF 2715EOF
2681 2716
2682cat >> $CONFIG_STATUS <<EOF 2717cat >> $CONFIG_STATUS <<EOF
2683 2718
2684CONFIG_FILES=\${CONFIG_FILES-"Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile"} 2719CONFIG_FILES=\${CONFIG_FILES-"Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile program/Makefile program/psiconv/Makefile lib/psiconv/general.h formats/Makefile docs/Makefile"}
2685EOF 2720EOF
2686cat >> $CONFIG_STATUS <<\EOF 2721cat >> $CONFIG_STATUS <<\EOF
2687for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then 2722for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
2688 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". 2723 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
2689 case "$ac_file" in 2724 case "$ac_file" in

Legend:
Removed from v.49  
changed lines
  Added in v.66

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26