aboutsummaryrefslogtreecommitdiff
path: root/databases/mongodb/files
diff options
context:
space:
mode:
authorMichael Scheidell <scheidell@FreeBSD.org>2011-11-24 16:42:57 +0000
committerMichael Scheidell <scheidell@FreeBSD.org>2011-11-24 16:42:57 +0000
commit777ea8ea02b7877b6963449b858ce6817dc0570e (patch)
treec8e5ca0eb15448b649e42ce16fde74f507b81961 /databases/mongodb/files
parenta074e9f5ef69107cd88e2f6fa7fd7796446f6006 (diff)
downloadports-777ea8ea02b7877b6963449b858ce6817dc0570e.tar.gz
ports-777ea8ea02b7877b6963449b858ce6817dc0570e.zip
Notes
Diffstat (limited to 'databases/mongodb/files')
-rw-r--r--databases/mongodb/files/patch-SConstruct15
1 files changed, 12 insertions, 3 deletions
diff --git a/databases/mongodb/files/patch-SConstruct b/databases/mongodb/files/patch-SConstruct
index ac3f01d83d64..4c2bea1cf11e 100644
--- a/databases/mongodb/files/patch-SConstruct
+++ b/databases/mongodb/files/patch-SConstruct
@@ -1,5 +1,5 @@
---- SConstruct.orig 2011-04-06 06:40:13.000000000 +0200
-+++ SConstruct 2011-04-09 10:59:56.000000000 +0200
+--- SConstruct.orig 2011-04-06 04:40:13.000000000 +0000
++++ SConstruct 2011-10-04 19:16:33.000000000 +0000
@@ -679,7 +679,10 @@
#make scons colorgcc friendly
@@ -11,4 +11,13 @@
+ env['ENV']['TERM'] = 'dumb'
if linux and has_option( "sharedclient" ):
- env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " ) \ No newline at end of file
+ env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " )
+@@ -1473,7 +1476,7 @@
+ fullInstallName = installDir + "/bin/" + name
+
+ allBinaries += [ name ]
+- if (solaris or linux) and (not has_option("nostrip")):
++ if (solaris or linux or freebsd) and (not has_option("nostrip")):
+ e.AddPostAction( inst, e.Action( 'strip ' + fullInstallName ) )
+
+ if linux and len( COMMAND_LINE_TARGETS ) == 1 and str( COMMAND_LINE_TARGETS[0] ) == "s3dist":