Changeset e6823bdef64336eb2aa93a68b34f985e4f7e7b4f

Show
Ignore:
Timestamp:
06/03/08 04:21:27 (4 years ago)
Author:
Lincoln de Sousa <lincoln@…>
Children:
7932c52c6c2726a05a5f5c91bd35e3bd6c3e6b00
Parents:
123dc068d13dfc1f734e60c5c226bd72e33b42ad
git-committer:
Lincoln de Sousa <lincoln@…> (06/03/08 04:21:27)
Message:

adding python-vte verification (closes #9)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • configure.ac

    r6ce746d re6823bd  
    5555AS_AC_EXPAND(DATADIR, ${datarootdir}) 
    5656 
     57dnl Checking python-vte 
     58AC_MSG_CHECKING([for the python-vte package]) 
     59ac_pvte_result=`$PYTHON -c "import vte" 2>&1` 
     60if test -z "$ac_pvte_result"; then 
     61    AC_MSG_RESULT([yes]) 
     62else 
     63    AC_MSG_RESULT([no]) 
     64    AC_MSG_ERROR([cannot import Python module "vte". 
     65    Please check if you have python-vte installed. The error was: 
     66    $ac_pvte_result]) 
     67fi 
     68 
    5769dnl gconf 
    5870AC_PATH_PROG(GCONFTOOL, gconftool-2, no)