From 994bcf35d2c547edc7f567a0f1b6e4db73a3ee73 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Tue, 7 Dec 2010 23:42:15 +0300 Subject: build: fix hpux build pb Pair-Programmed-With: Thomas Nagy Fix the library extension from .so to .sl Add full path to library when linking this is needed due to a strange behavior of HP-UX: This command: gcc demo demo.c -L dir1/dir2/ -lsomelib will give a binary with a hard coded lib like dir1/dir2/libsomelib.sl. Somehow like a partial rpath, it has the first impact of fooling waf detection of wether the plateform support libraries or not (leading to being unable to compile samba on HPUX) and the impact of having non functionnal binaries. Autobuild-User: Matthieu Patou Autobuild-Date: Wed Dec 8 00:32:50 CET 2010 on sn-devel-104 --- buildtools/wafsamba/wafsamba.py | 1 + 1 file changed, 1 insertion(+) (limited to 'buildtools/wafsamba/wafsamba.py') diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 5d13fa1023..1d3ced13ce 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -23,6 +23,7 @@ import samba_conftests import samba_abi import tru64cc import irixcc +import hpuxcc import generic_cc import samba_dist import samba_wildcard -- cgit