Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/telegram-purple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2016-01-03 17:59:32 +0300
committerBen Wiederhake <BenWiederhake.GitHub@gmx.de>2016-01-07 12:51:24 +0300
commitf4f058edb5312baa8c19588694a07481caa5d227 (patch)
treec55e2413c820efbf0344aec9c023128fa6d79465 /configure
parentf958dfe2bcd4b21965ce2883530d20a416fe1514 (diff)
Add target noicon_install
This moves the feature #100 from the ./configure option to a make target, which reduces the combinatory explosion of the ./configure options.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 4 insertions, 12 deletions
diff --git a/configure b/configure
index 6eb8fc5..de8496c 100755
--- a/configure
+++ b/configure
@@ -625,7 +625,6 @@ MSGFMT_PATH
CHECK_GETTEXT
PURPLE_CPPFLAGS
LIBOBJS
-COPY_ICONS
PURPLE_LIBS
PURPLE_CFLAGS
PKG_CONFIG_LIBDIR
@@ -1323,10 +1322,8 @@ Optional Features:
DISTRIBUTE BINARIES!
--disable-libwebp Disable libwebp, stickers won't be displayed in the
chat
- --disable-icons Don't copy the protocol icons for Pidgin. Only
- useful if you're using Finch of telepathy-haze.
- (Adium users shouldn't be using this build system at
- all.)
+ --disable-icons Unsupported option. Use 'make noicon_install'
+ instead.
--disable-translation Disable gettext translation
Optional Packages:
@@ -4407,19 +4404,14 @@ fi
fi
-COPY_ICONS=yes
-
# Check whether --enable-icons was given.
if test "${enable_icons+set}" = set; then :
enableval=$enable_icons;
fi
- if test "x$enable_icons" == "xno"; then :
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Icons are deactivated. Pidgin needs icons. Finch and telepathy-haze don't." >&5
-$as_echo "$as_me: WARNING: Icons are deactivated. Pidgin needs icons. Finch and telepathy-haze don't." >&2;}
- COPY_ICONS=no
+if test "x$enable_icons" == "xno"; then :
+ as_fn_error $? "--disable-icons is now obsolete. Please use 'make noicon_install' for the same effect." "$LINENO" 5
fi