diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-05-13 16:15:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:53:42 -0500 |
commit | d5ba19d0088f65e308443a32dd39c11d6ba8983d (patch) | |
tree | 9bc4462909f0cfd73d572c801115a357ad859aa2 /source4/build/smb_build/input.pl | |
parent | 3f564db67d9ffca599b1885ad2c6379830cd0aaf (diff) | |
download | samba-d5ba19d0088f65e308443a32dd39c11d6ba8983d.tar.gz samba-d5ba19d0088f65e308443a32dd39c11d6ba8983d.tar.bz2 samba-d5ba19d0088f65e308443a32dd39c11d6ba8983d.zip |
r690: - ignore source/tags
- add support for shared libraries
- enable libldb shared lib when --enable-experimental
metze
(This used to be commit dcef69dc54a2575e7f57d67d1983482b4ff57bdb)
Diffstat (limited to 'source4/build/smb_build/input.pl')
-rw-r--r-- | source4/build/smb_build/input.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/build/smb_build/input.pl b/source4/build/smb_build/input.pl index 8b5b904f1e..91ce42bdc8 100644 --- a/source4/build/smb_build/input.pl +++ b/source4/build/smb_build/input.pl @@ -6,6 +6,17 @@ ### Released under the GNU GPL ### ########################################################### +sub strtrim($) +{ + my $str = shift; + my @ar = (); + + $str =~ s/^[\t\n ]*//g; + + $str =~ s/[\t\n ]*$//g; + + return $str; +} sub str2array($) { |