From: handa Date: Thu, 27 May 2004 23:42:08 +0000 (+0000) Subject: Accept "GUI" flag and adjusted for the new X-Git-Tag: withdl~149 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e086980f1150accd9f74ebe728939ad66a6e8a57;p=m17n%2Fm17n-lib.git Accept "GUI" flag and adjusted for the new configuration. --- diff --git a/m17n-config.in b/m17n-config.in index a04d3eb..4a58e06 100644 --- a/m17n-config.in +++ b/m17n-config.in @@ -10,7 +10,7 @@ exec_prefix=@exec_prefix@ help () { - echo "Usage: $0 [CORE | X] [--version | --cflags | --libs | --libtool]" + echo "Usage: $0 [CORE | GUI] [--version | --cflags | --libs | --libtool]" } if test $# -eq 0; then @@ -22,7 +22,8 @@ LIBNAME=m17n case $1 in CORE) LIBNAME=m17n-core; shift;; -X) LIBNAME=m17n-X; shift;; +GUI) LIBNAME=m17n-gui; shift;; +X) LIBNAME=m17n-gui; shift;; esac case $1 in @@ -33,7 +34,7 @@ case $1 in if test "@libdir@" != "/usr/lib"; then echo "-L@libdir@ -l${LIBNAME}" else - echo "-lm17n-X" + echo "-l${LIBNAME}" fi;; --cflags)