- Timestamp:
- 2006-10-22T17:00:15Z (18 years ago)
- Branches:
- master
- Children:
- f0071b7
- Parents:
- 66f783f (diff), 6237ded (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r66f783f re8a6211 31 31 32 32 events=glib 33 ldap= auto33 ldap=0 34 34 ssl=auto 35 35 36 36 arch=`uname -s` 37 37 cpu=`uname -m` 38 39 GLIB_MIN_VERSION=2.4 38 40 39 41 echo BitlBee configure … … 175 177 176 178 if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then 177 cat<<EOF>>Makefile.settings 179 if $PKG_CONFIG glib-2.0 --atleast-version=$GLIB_MIN_VERSION; then 180 cat<<EOF>>Makefile.settings 178 181 EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0` 179 182 CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0` 180 183 EOF 181 else 184 else 185 echo 186 echo 'Found glib2 '`$PKG_CONFIG glib-2.0 --modversion`', but version '$GLIB_MIN_VERSION' or newer is required.' 187 exit 1 188 fi 189 else 190 echo 182 191 echo 'Cannot find glib2 development libraries, aborting. (Install libglib2-dev?)' 183 exit 1 ;192 exit 1 184 193 fi 185 194 … … 290 299 elif [ "$ssl" = "bogus" ]; then 291 300 echo 292 echo 'Using bogus SSL code. This means some features have to be disabled.'301 echo 'Using bogus SSL code. This means some features will not work properly.' 293 302 294 303 ## Yes, you, at the console! How can you authenticate if you don't have any SSL!?
Note: See TracChangeset
for help on using the changeset viewer.