- Timestamp:
- 2006-05-26T09:03:38Z (19 years ago)
- Branches:
- master
- Children:
- cdca30b
- Parents:
- 41ca004 (diff), c53911e (diff), 7bfd574 (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
r41ca004 r68b518d6 169 169 fi 170 170 171 GLIB=0 172 171 173 if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then 172 174 cat<<EOF>>Makefile.settings … … 175 177 EOF 176 178 echo '#define GLIB2' >> config.h 179 GLIB=2 177 180 elif type glib-config > /dev/null 2> /dev/null; then 178 181 cat<<EOF>>Makefile.settings … … 181 184 EOF 182 185 echo '#define GLIB1' >> config.h 186 GLIB=1 183 187 else 184 188 echo 'Cannot find glib development libraries, aborting. (Install libglib-dev?)' … … 186 190 fi 187 191 188 if [ -r /usr/include/iconv.h ]; then192 if [ GLIB = 1 -o -r /usr/include/iconv.h ]; then 189 193 :; 190 194 elif [ -r /usr/local/include/iconv.h ]; then
Note: See TracChangeset
for help on using the changeset viewer.