You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
490 B
24 lines
490 B
*** XML/xml2-config.in.orig 2006-06-06 16:35:56.000000000 +0200 |
|
--- XML/xml2-config.in 2006-06-06 16:36:24.000000000 +0200 |
|
*************** |
|
*** 3,9 **** |
|
prefix=@prefix@ |
|
exec_prefix=@exec_prefix@ |
|
includedir=@includedir@ |
|
! libdir=@libdir@ |
|
|
|
usage() |
|
{ |
|
--- 3,14 ---- |
|
prefix=@prefix@ |
|
exec_prefix=@exec_prefix@ |
|
includedir=@includedir@ |
|
! if [ "`ldd /bin/sh | grep lib64`" = "" ] |
|
! then |
|
! libdir=${exec_prefix}/lib |
|
! else |
|
! libdir=${exec_prefix}/lib64 |
|
! fi |
|
|
|
usage() |
|
{
|
|
|