diff options
-rwxr-xr-x | configure | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -118,7 +118,7 @@ pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'` protocols_mods="" -cat<<EOF>Makefile.settings +cat <<EOF >Makefile.settings ## BitlBee settings, generated by configure PREFIX=$prefix BINDIR=$bindir @@ -166,7 +166,7 @@ else srcdir=$PWD fi -cat<<EOF>config.h +cat<<EOF >config.h /* BitlBee settings, generated by configure Do *NOT* use any of these defines in your code without thinking twice, most @@ -245,7 +245,7 @@ fi if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then if $PKG_CONFIG glib-2.0 --atleast-version=$GLIB_MIN_VERSION; then - cat<<EOF>>Makefile.settings + cat<<EOF >>Makefile.settings EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0` CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0` EOF @@ -269,7 +269,7 @@ if [ "$events" = "libevent" ]; then fi echo '#define EVENTS_LIBEVENT' >> config.h - cat <<EOF>>Makefile.settings + cat <<EOF >>Makefile.settings EFLAGS+=-levent -L${libevent}lib CFLAGS+=-I${libevent}include EOF @@ -286,7 +286,7 @@ echo 'EVENT_HANDLER=events_'$events'.o' >> Makefile.settings detect_gnutls() { if $PKG_CONFIG --exists gnutls; then - cat <<EOF>>Makefile.settings + cat <<EOF >>Makefile.settings EFLAGS+=`$PKG_CONFIG --libs gnutls` `libgcrypt-config --libs` CFLAGS+=`$PKG_CONFIG --cflags gnutls` `libgcrypt-config --cflags` EOF @@ -297,7 +297,7 @@ EOF fi ret=1 elif libgnutls-config --version > /dev/null 2> /dev/null; then - cat <<EOF>>Makefile.settings + cat <<EOF >>Makefile.settings EFLAGS+=`libgnutls-config --libs` `libgcrypt-config --libs` CFLAGS+=`libgnutls-config --cflags` `libgcrypt-config --cflags` EOF @@ -312,7 +312,7 @@ EOF detect_nss() { if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG nss; then - cat<<EOF>>Makefile.settings + cat<<EOF >>Makefile.settings EFLAGS+=`$PKG_CONFIG --libs nss` CFLAGS+=`$PKG_CONFIG --cflags nss` EOF @@ -568,7 +568,7 @@ if ! make helloworld > /dev/null 2>&1; then fi fi -cat <<EOF>bitlbee.pc +cat <<EOF >bitlbee.pc prefix=$prefix includedir=$includedir plugindir=$plugindir @@ -594,7 +594,7 @@ else exit 1 fi echo '#define WITH_PURPLE' >> config.h - cat<<EOF>>Makefile.settings + cat<<EOF >>Makefile.settings EFLAGS += $($PKG_CONFIG purple --libs) PURPLE_CFLAGS += $($PKG_CONFIG purple --cflags) EOF |