comparison libpurple/protocols/qq/Makefile.am @ 24322:d971d5369b43

2008.10.30 - flos <lonicerae(at)gmail.com> * Fixed a bug which made xgettext failed in buddy_info.c * Fixed a bug in Makefile.am and Makefile.mingw * Updated acknowledgement in qq.c
author SHiNE CsyFeK <csyfek@gmail.com>
date Thu, 30 Oct 2008 12:41:36 +0000
parents 1ee91ff0d5fe
children fecedf6d9ee1
comparison
equal deleted inserted replaced
24321:e4f4ffd7ed4c 24322:d971d5369b43
52 AM_CFLAGS = $(st) 52 AM_CFLAGS = $(st)
53 53
54 libqq_la_LDFLAGS = -module -avoid-version 54 libqq_la_LDFLAGS = -module -avoid-version
55 55
56 CURRENT_REVISION=$(shell \ 56 CURRENT_REVISION=$(shell \
57 awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \ 57 if [ -e ./.hg_archival.txt ]; then \
58 rev=substr(rev,7,6); \ 58 awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \
59 print rev}') 59 rev=substr(rev,7,6); print rev}' > current_revision; \
60 else \
61 echo "!hg" > current_revision; \
62 fi; \
63 cat ./current_revision)
60 64
61 if STATIC_QQ 65 if STATIC_QQ
62 66
63 st = -DPURPLE_STATIC_PRPL 67 st = -DPURPLE_STATIC_PRPL
64 noinst_LIBRARIES = libqq.a 68 noinst_LIBRARIES = libqq.a