- Timestamp:
- 2006-05-28T23:07:00Z (19 years ago)
- Branches:
- master
- Children:
- 4ff0966, c38e965
- Parents:
- 42616d1 (diff), 574af7e (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
r42616d1 r79b6213 163 163 fi 164 164 165 GLIB=0166 167 165 if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then 168 166 cat<<EOF>>Makefile.settings … … 170 168 CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0` 171 169 EOF 172 echo '#define GLIB2' >> config.h 173 GLIB=2 174 elif type glib-config > /dev/null 2> /dev/null; then 175 cat<<EOF>>Makefile.settings 176 EFLAGS+=`glib-config --libs` 177 CFLAGS+=`glib-config --cflags` 178 EOF 179 echo '#define GLIB1' >> config.h 180 GLIB=1 181 else 182 echo 'Cannot find glib development libraries, aborting. (Install libglib-dev?)' 170 else 171 echo 'Cannot find glib2 development libraries, aborting. (Install libglib2-dev?)' 183 172 exit 1; 184 173 fi 185 186 if [ GLIB = 1 -o -r /usr/include/iconv.h ]; then187 :;188 elif [ -r /usr/local/include/iconv.h ]; then189 echo CFLAGS+=-I/usr/local/include >> Makefile.settings;190 else191 echo192 echo 'Warning: Could not find iconv.h, you might have to install it and/or modify'193 echo 'Makefile.settings to tell where this file is.';194 fi195 196 174 197 175 detect_gnutls() … … 390 368 ;; 391 369 *BSD ) 392 echo 'EFLAGS+=-liconv' >> Makefile.settings; 370 ;; 371 Darwin ) 372 ;; 373 IRIX ) 393 374 ;; 394 375 SunOS ) 395 376 echo 'EFLAGS+=-lresolv -lnsl -lsocket' >> Makefile.settings 396 377 echo 'STRIP=\# skip strip' >> Makefile.settings 397 echo 'EFLAGS+=-liconv' >> Makefile.settings;398 ;;399 Darwin )400 echo 'EFLAGS+=-liconv' >> Makefile.settings;401 ;;402 IRIX )403 378 ;; 404 379 CYGWIN* )
Note: See TracChangeset
for help on using the changeset viewer.