IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 4, 2005, 10:33:20 PM (21 years ago)
Author:
desonia
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/configure.in

    r3136 r3139  
    1111AC_LANG(C)
    1212AC_PROG_CC
     13AC_PROG_F77
     14AC_F77_WRAPPERS
    1315AC_PROG_INSTALL
    1416AC_PROG_LIBTOOL
     
    1921dnl Setup CFLAGS/FFLAGS/LDFLAGS with project-particulars
    2022CFLAGS="${CFLAGS=} -Wall -std=c99 -D_GNU_SOURCE"
    21 FFLAGS="-fno-second-underscore -O -fno-f2c"
    2223LDFLAGS="-release 5"
    2324
     
    6364[GSL_CONFIG=$withval],
    6465[GSL_CONFIG=`which gsl-config`])
    65 AC_CHECK_FILE($GSL_CONFIG,[],
     66AC_CHECK_FILE($GSL_CONFIG,[AC_MSG_RESULT([yes])],
    6667    [AC_MSG_ERROR([GSL is required.  Obtain it at http://www.gnu.org/software/gsl or use --with-gsl-config to specify location.])])
    67 CFLAGS="${CFLAGS=} `${GSL_CONFIG} --cflags`"
     68AC_MSG_CHECKING([GSL cflags])
     69GSL_CFLAGS="`${GSL_CONFIG} --cflags`"
     70AC_MSG_RESULT([${GSL_CFLAGS}])
     71CFLAGS="${CFLAGS=} ${GSL_CFLAGS}"
    6872PSLIB_LIBS="${PSLIB_LIBS=} `${GSL_CONFIG} --libs`"
    6973   
     
    7377[XML_CONFIG=$withval],
    7478[XML_CONFIG=`which xml2-config`])
    75 AC_CHECK_FILE($XML_CONFIG,[],
     79AC_CHECK_FILE($XML_CONFIG,[AC_MSG_RESULT([yes])],
    7680    [AC_MSG_ERROR([GNOME XML C parser is required.  Obtain it at http://www.xmlsoft.org or use --with-xml2-config to specify location.])])
    77 CFLAGS="${CFLAGS=} `${XML_CONFIG} --cflags`"
     81AC_MSG_CHECKING([xml2 cflags])
     82XML_CFLAGS="`${XML_CONFIG} --cflags`"
     83AC_MSG_RESULT([${XML_CFLAGS}])
     84CFLAGS="${CFLAGS=} ${XML_CFLAGS}"
    7885PSLIB_LIBS="${PSLIB_LIBS=} `${XML_CONFIG} --libs`"
    7986
Note: See TracChangeset for help on using the changeset viewer.