version 1.1.1.1, 2012/02/21 23:05:51
|
version 1.1.1.2, 2012/02/21 23:50:25
|
Line 4 prefix=@prefix@
|
Line 4 prefix=@prefix@
|
exec_prefix=@exec_prefix@ |
exec_prefix=@exec_prefix@ |
exec_prefix_set=no |
exec_prefix_set=no |
|
|
|
cflags="[--cflags]" |
|
|
if test @enable_cpp@ = yes ; then |
if test @enable_cpp@ = yes ; then |
usage="Usage: pcre-config [--prefix] [--exec-prefix] [--version] [--libs] [--libs-posix] [--libs-cpp] [--cflags] [--cflags-posix]" | libs="[--libs-cpp]" |
else |
else |
usage="Usage: pcre-config [--prefix] [--exec-prefix] [--version] [--libs] [--libs-posix] [--cflags] [--cflags-posix]" | libs= |
fi |
fi |
|
|
|
if test @enable_pcre16@ = yes ; then |
|
libs="[--libs16] $libs" |
|
fi |
|
|
|
if test @enable_pcre8@ = yes ; then |
|
libs="[--libs] [--libs-posix] $libs" |
|
cflags="$cflags [--cflags-posix]" |
|
fi |
|
|
|
usage="Usage: pcre-config [--prefix] [--exec-prefix] [--version] $libs $cflags" |
|
|
if test $# -eq 0; then |
if test $# -eq 0; then |
echo "${usage}" 1>&2 |
echo "${usage}" 1>&2 |
exit 1 |
exit 1 |
Line 56 while test $# -gt 0; do
|
Line 69 while test $# -gt 0; do
|
--version) |
--version) |
echo @PACKAGE_VERSION@ |
echo @PACKAGE_VERSION@ |
;; |
;; |
--cflags | --cflags-posix) | --cflags) |
if test @includedir@ != /usr/include ; then |
if test @includedir@ != /usr/include ; then |
includes=-I@includedir@ |
includes=-I@includedir@ |
fi |
fi |
echo $includes @PCRE_STATIC_CFLAG@ |
echo $includes @PCRE_STATIC_CFLAG@ |
;; |
;; |
|
--cflags-posix) |
|
if test @enable_pcre8@ = yes ; then |
|
if test @includedir@ != /usr/include ; then |
|
includes=-I@includedir@ |
|
fi |
|
echo $includes @PCRE_STATIC_CFLAG@ |
|
else |
|
echo "${usage}" 1>&2 |
|
fi |
|
;; |
--libs-posix) |
--libs-posix) |
echo $libS$libR -lpcreposix -lpcre | if test @enable_pcre8@ = yes ; then |
| echo $libS$libR -lpcreposix -lpcre |
| else |
| echo "${usage}" 1>&2 |
| fi |
;; |
;; |
--libs) |
--libs) |
echo $libS$libR -lpcre | if test @enable_pcre8@ = yes ; then |
| echo $libS$libR -lpcre |
| else |
| echo "${usage}" 1>&2 |
| fi |
| ;; |
| --libs16) |
| if test @enable_pcre16@ = yes ; then |
| echo $libS$libR -lpcre16 |
| else |
| echo "${usage}" 1>&2 |
| fi |
;; |
;; |
--libs-cpp) |
--libs-cpp) |
if test @enable_cpp@ = yes ; then |
if test @enable_cpp@ = yes ; then |