diff options
author | James FitzGibbon <jfitz@FreeBSD.org> | 1997-07-02 13:06:58 +0000 |
---|---|---|
committer | James FitzGibbon <jfitz@FreeBSD.org> | 1997-07-02 13:06:58 +0000 |
commit | 1dbc6ad7abb4200ce4672783e9046e73ee355316 (patch) | |
tree | 8017e71d39910df36d5ed69478ca78999ecd2016 /net-mgmt/p5-SNMP | |
parent | 9e1e8dcb6f515cae4bb82a52bea4f82b7524db7d (diff) | |
download | ports-1dbc6ad7abb4200ce4672783e9046e73ee355316.tar.gz ports-1dbc6ad7abb4200ce4672783e9046e73ee355316.zip |
Notes
Diffstat (limited to 'net-mgmt/p5-SNMP')
-rw-r--r-- | net-mgmt/p5-SNMP/files/patch-aa | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/net-mgmt/p5-SNMP/files/patch-aa b/net-mgmt/p5-SNMP/files/patch-aa index 00b792963d07..d729b1190fa0 100644 --- a/net-mgmt/p5-SNMP/files/patch-aa +++ b/net-mgmt/p5-SNMP/files/patch-aa @@ -1,11 +1,18 @@ ---- Makefile.PL.orig Mon May 5 21:23:30 1997 -+++ Makefile.PL Mon May 5 21:31:53 1997 -@@ -17,7 +17,7 @@ +--- Makefile.PL.orig Tue Feb 27 20:35:19 1996 ++++ Makefile.PL Wed Jul 2 09:04:10 1997 +@@ -17,13 +17,9 @@ my @IncludeFiles = qw[asn1.h parse.h snmp.h snmp_api.h snmp_client.h snmp_impl.h]; -my @IncludeDirs = qw[/usr/include /usr/local/include]; -+my @IncludeDirs = qw[/usr/include /usr/local/include /usr/local/include/snmp]; ++my $IncludeDir = find_files(\@IncludeFiles, [ ( "$ENV{PREFIX}/include/snmp" ) ] ); - my $IncludeDir = find_files(\@IncludeFiles,\@IncludeDirs) || - prompt("Where are the cmu-snmpv2 include files installed?","/usr/local/include"); +-my $IncludeDir = find_files(\@IncludeFiles,\@IncludeDirs) || +- prompt("Where are the cmu-snmpv2 include files installed?","/usr/local/include"); +- +-my $LibDir = find_files(["libsnmp.a"],[qw[/usr/lib /usr/local/lib]]) || +- prompt("Where is libsnmp.a installed?","/usr/local/lib"); ++my $LibDir = find_files(["libsnmp.a"], [ ( "$ENV{PREFIX}/lib" ) ] ); + + @IncludeFiles = map {"$IncludeDir/$_";} @IncludeFiles; + $Params{LIBS} = "-L$LibDir -lsnmp"; |