2004-03-07 Marcus Brinkmann <marcus@g10code.de>
* gpgme-config.in: Do not emit include and lib directory for prefix "/usr" or "".
This commit is contained in:
parent
52cf0dda67
commit
d6d3eaa858
@ -1,3 +1,8 @@
|
|||||||
|
2004-03-07 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
|
* gpgme-config.in: Do not emit include and lib directory for
|
||||||
|
prefix "/usr" or "".
|
||||||
|
|
||||||
2004-03-03 Werner Koch <wk@gnupg.org>
|
2004-03-03 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* engine-gpgsm.c (gpgsm_export_ext): Properly insert a space
|
* engine-gpgsm.c (gpgsm_export_ext): Properly insert a space
|
||||||
|
@ -78,7 +78,9 @@ while test $# -gt 0; do
|
|||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
--cflags)
|
--cflags)
|
||||||
|
if test "x$includedir" != "x/usr/include" -a "x$includedir" != "x/include"; then
|
||||||
output="$output -I$includedir"
|
output="$output -I$includedir"
|
||||||
|
fi
|
||||||
case "$thread_module" in
|
case "$thread_module" in
|
||||||
pthread)
|
pthread)
|
||||||
output="$output $cflags_pthread"
|
output="$output $cflags_pthread"
|
||||||
@ -90,7 +92,9 @@ while test $# -gt 0; do
|
|||||||
output="$output $gpg_error_cflags"
|
output="$output $gpg_error_cflags"
|
||||||
;;
|
;;
|
||||||
--libs)
|
--libs)
|
||||||
|
if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then
|
||||||
output="$output -L$libdir"
|
output="$output -L$libdir"
|
||||||
|
fi
|
||||||
case "$thread_module" in
|
case "$thread_module" in
|
||||||
pthread)
|
pthread)
|
||||||
output="$output -lgpgme-pthread $libs_pthread"
|
output="$output -lgpgme-pthread $libs_pthread"
|
||||||
|
Loading…
Reference in New Issue
Block a user