- Timestamp:
- 2005-12-18T14:28:52Z (19 years ago)
- Branches:
- master
- Children:
- 1fa6a23, 7308b63
- Parents:
- 578d627 (diff), 32c632f (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
r578d627 r00f434f 145 145 fi 146 146 147 if type pkg-config > /dev/null 2>/dev/null && pkg-config glib-2.0; then 147 if [ -z "$PKG_CONFIG" ]; then 148 PKG_CONFIG=pkg-config 149 fi 150 151 if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then 148 152 cat<<EOF>>Makefile.settings 149 EFLAGS+=` pkg-config--libs glib-2.0 gmodule-2.0`150 CFLAGS+=` pkg-config--cflags glib-2.0 gmodule-2.0`153 EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0` 154 CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0` 151 155 EOF 152 156 echo '#define GLIB2' >> config.h … … 190 194 detect_nss() 191 195 { 192 if type pkg-config > /dev/null 2>/dev/null && pkg-configmozilla-nss; then196 if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG mozilla-nss; then 193 197 cat<<EOF>>Makefile.settings 194 EFLAGS+=` pkg-config--libs mozilla-nss`195 CFLAGS+=` pkg-config--cflags mozilla-nss`198 EFLAGS+=`$PKG_CONFIG --libs mozilla-nss` 199 CFLAGS+=`$PKG_CONFIG --cflags mozilla-nss` 196 200 EOF 197 201
Note: See TracChangeset
for help on using the changeset viewer.