Changeset 300

Show
Ignore:
Timestamp:
06/29/09 23:55:01 (15 years ago)
Author:
trnewman
Message:

Added python and swig checks

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/configure.ac

    r161 r300  
    1 AC_INIT([vtcross], [0.0.0]) 
    2 AM_INIT_AUTOMAKE([vtcross], [0.0.0]) 
     1AC_INIT([cross], [0.0.0]) 
     2AM_INIT_AUTOMAKE([cross], [0.0.0]) 
    33AM_CONFIG_HEADER([src/include/vtcross/config.h]) 
    44 
     
    77AC_PROG_CC 
    88AC_PROG_CXX 
     9AC_PROG_SWIG 
    910AC_PROG_LIBTOOL 
    1011AC_PROG_INSTALL 
     12 
     13AC_DISABLE_STATIC 
     14AM_PATH_PYTHON(2.6) 
     15SWIG_ENABLE_CXX 
     16SWIG_PYTHON 
    1117 
    1218AC_LANG_PUSH([C]) 
     
    1925          src/lib/tinyxml/Makefile  src/lib/socketcomm/Makefile src/include/Makefile 
    2026          src/include/vtcross/Makefile src/include/tinyxml/Makefile 
    21           src/lib/Makefile) 
     27          src/lib/Makefile src/libvtcross/swig/Makefile) 
    2228AC_OUTPUT 
     29