Changeset 7248

Show
Ignore:
Timestamp:
10/15/06 12:32:17 (23 months ago)
Author:
dkirov
Message:

check for pkg-config in autogen.sh

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/autogen.sh

    r7215 r7248  
    44  src/*py src/common/*py src/common/zeroconf/*.py >> \ 
    55  po/POTFILES.in || exit 1 
     6  if test -z `which pkg-config 2>/dev/null`;then 
     7    echo "***Error: pkg-config not found***" 
     8        echo "See README.html for build requirements." 
     9        exit 1 
     10  fi 
    611  set -x 
    712  intltoolize --force --automake \ 
  • trunk/configure.ac

    r7233 r7248  
    88 
    99IT_PROG_INTLTOOL([0.35.0]) 
     10PKG_PROG_PKG_CONFIG([0.19]) 
    1011 
    1112AM_DISABLE_STATIC 
  • trunk/README.html

    r7214 r7248  
    9191<li>libtool</li> 
    9292<li>intltool-0.35.0 </li> 
     93<li>pkgconfig &gt;= 0.19</li> 
    9394</ul> 
    9495</p> 
     
    9697<pre> 
    9798    $ sh autogen.sh 
     99    $ ./configure 
     100    $ make 
     101</pre> 
     102Alternatively, if you don't want to install all these packages, you can get a nightly snapshot from <a href="http://www.gajim.org/downloads/snap/">here</a> and procede as usual: 
     103<pre> 
    98104    $ ./configure 
    99105    $ make