IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4816


Ignore:
Timestamp:
Aug 18, 2005, 12:20:10 PM (21 years ago)
Author:
drobbin
Message:

Edited makefiles to include ErrorText and libxml path for psModule

Location:
trunk/psLib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/configure.ac

    r4549 r4816  
    118118]],[[int v=MYSQL_VERSION_ID;
    119119    if (v < 40102) {
    120         exit(1);
     120    exit(1);
    121121    } else {
    122         exit(0);
     122    exit(0);
    123123    }
    124124]])], [], [AC_MSG_ERROR([MySQL 4.1.2 or newer is required.  Obtain it at  http://www.mysql.com or use --with-mysql to specify location.])])
     
    192192dnl LDFLAGS="${LDFLAGS=} `${XML_CONFIG} --libs`"
    193193PSLIB_LIBS="${PSLIB_LIBS=} `${XML_CONFIG} --libs`"
     194PSLIB_CFLAGS="${PSLIB_CFLAGS=} `${XML_CONFIG} --cflags`"
    194195
    195196dnl ------------------- SWIG options ---------------------
  • trunk/psLib/src/Makefile.am

    r4549 r4816  
    1919        psTest.h \
    2020        pslib.h \
    21         pslib_strict.h
     21        pslib_strict.h \
     22        psErrorText.h
    2223
    2324install-exec-hook: libpslib.la
  • trunk/psLib/test/math/Makefile.am

    r4759 r4816  
    44
    55TESTS = \
    6         tst_psFunc00 \
    7         tst_psFunc01 \
    8         tst_psFunc02 \
    9         tst_psFunc03 \
    10         tst_psFunc04 \
    11         tst_psFunc05 \
    12         tst_psFunc07 \
    13         tst_psFunc08 \
    14         tst_psFunc09 \
    15         tst_psFunc10 \
    16         tst_psFunc11 \
    17         tst_psHist00 \
    18         tst_psHist01 \
    19         tst_psHist02 \
    20         tst_psHist03 \
    21         tst_psMatrix01 \
    22         tst_psMatrix02 \
    23         tst_psMatrix03 \
    24         tst_psMatrix04 \
    25         tst_psMatrix05 \
    26         tst_psMatrix06 \
    27         tst_psMatrix07 \
    28         tst_psMatrixVectorArithmetic01 \
    29         tst_psMatrixVectorArithmetic02 \
    30         tst_psMatrixVectorArithmetic03 \
    31         tst_psMatrixVectorArithmetic04 \
    32         tst_psMinimize04 \
    33         tst_psMinimize04_F32 \
    34         tst_psMinimize04b \
    35         tst_psMinimize04b_F32 \
    36         tst_psMinimize05 \
    37         tst_psMinimize06 \
    38         tst_psStats00 \
    39         tst_psStats01 \
    40         tst_psStats02 \
    41         tst_psStats03 \
    42         tst_psStats05 \
    43         tst_psStats06 \
    44         tst_psStats07 \
    45         tst_psStats08 \
    46         tst_psStats09 \
    47         tst_psRandom
    48 #       tst_psMinimize00 \
    49 #       tst_psMinimize01 \
    50 #       tst_psMinimize02 \
    51 #       tst_psMinimize03
     6    tst_psFunc00 \
     7    tst_psFunc01 \
     8    tst_psFunc02 \
     9    tst_psFunc03 \
     10    tst_psFunc04 \
     11    tst_psFunc05 \
     12    tst_psFunc07 \
     13    tst_psFunc08 \
     14    tst_psFunc09 \
     15    tst_psFunc10 \
     16    tst_psFunc11 \
     17    tst_psHist00 \
     18    tst_psHist01 \
     19    tst_psHist02 \
     20    tst_psHist03 \
     21    tst_psMatrix01 \
     22    tst_psMatrix02 \
     23    tst_psMatrix03 \
     24    tst_psMatrix04 \
     25    tst_psMatrix05 \
     26    tst_psMatrix06 \
     27    tst_psMatrix07 \
     28    tst_psMatrixVectorArithmetic01 \
     29    tst_psMatrixVectorArithmetic02 \
     30    tst_psMatrixVectorArithmetic03 \
     31    tst_psMatrixVectorArithmetic04 \
     32    tst_psMinimize04 \
     33    tst_psMinimize04_F32 \
     34    tst_psMinimize04b \
     35    tst_psMinimize04b_F32 \
     36    tst_psMinimize05 \
     37    tst_psMinimize06 \
     38    tst_psStats00 \
     39    tst_psStats01 \
     40    tst_psStats02 \
     41    tst_psStats03 \
     42    tst_psStats05 \
     43    tst_psStats06 \
     44    tst_psStats07 \
     45    tst_psStats08 \
     46    tst_psStats09 \
     47    tst_psRandom
     48#   tst_psMinimize00 \
     49#   tst_psMinimize01 \
     50#   tst_psMinimize02 \
     51#   tst_psMinimize03
    5252
    5353tst_psFunc00_SOURCES =  tst_psFunc00.c
     
    8787tst_psMinimize05_SOURCES =  tst_psMinimize05.c
    8888tst_psMinimize06_SOURCES =  tst_psMinimize06.c
    89 tst_psMinimize07_SOURCES =  tst_psMinimize07.c
    9089tst_psStats00_SOURCES =  tst_psStats00.c
    9190tst_psStats01_SOURCES =  tst_psStats01.c
  • trunk/psLib/test/xml/Makefile

    r4815 r4816  
    109109LN_S = ln -s
    110110LTLIBOBJS =
    111 MAINT = #
    112 MAINTAINER_MODE_FALSE =
    113 MAINTAINER_MODE_TRUE = #
     111MAINT =
     112MAINTAINER_MODE_FALSE = #
     113MAINTAINER_MODE_TRUE =
    114114MAKEINFO = ${SHELL} /home/drobbin/panstarrs/temp/psLib/missing --run makeinfo
    115115OBJEXT = o
     
    125125PERL_PREFIX = /home/drobbin/panstarrs/temp/psLib
    126126POW_LIB =
    127 PSLIB_CFLAGS = -I${prefix}/include
     127PSLIB_CFLAGS = -I${prefix}/include -I/usr/include/libxml2
    128128PSLIB_LIBS =  -L/usr/lib/mysql -lmysqlclient -lz -lcrypt -lnsl -lm  -lcfitsio  -lfftw3f -L/usr/local/lib -lgsl -lgslcblas -lm -lxml2 -lz -lpthread -lm
    129129PSLIB_LT_VERSION = 0:6:0
     
    203203.SUFFIXES:
    204204.SUFFIXES: .c .lo .o .obj
    205 $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am  $(am__configure_deps)
     205$(srcdir)/Makefile.in: $(srcdir)/Makefile.am  $(am__configure_deps)
    206206        @for dep in $?; do \
    207207          case '$(am__configure_deps)' in \
     
    228228        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
    229229
    230 $(top_srcdir)/configure: # $(am__configure_deps)
     230$(top_srcdir)/configure: $(am__configure_deps)
    231231        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
    232 $(ACLOCAL_M4): # $(am__aclocal_m4_deps)
     232$(ACLOCAL_M4): $(am__aclocal_m4_deps)
    233233        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
    234234
Note: See TracChangeset for help on using the changeset viewer.