summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sandall2010-10-06 18:12:59 -0700
committerEric Sandall2010-10-06 18:14:38 -0700
commit3a42bbdf82118832c019a60a0bc01900d2ef2c89 (patch)
tree21ad8c08671df1e03186e3e616a1c2c477bf7ec3
parentc8c6d10af2b6eed0791d788e0168580790e43be3 (diff)
sane-backends: ./configure does not know --enable-fork-process, renamed
to --disable-pthread configure: WARNING: unrecognized options: --enable-fork-process Options are now backwards (--enable is now --disable). --enable-pthread use pthread instead of fork (default=yes for MacOS X/MINGW, no for everything else)
-rwxr-xr-xgraphics-libs/sane-backends/BUILD4
-rw-r--r--graphics-libs/sane-backends/HISTORY1
2 files changed, 3 insertions, 2 deletions
diff --git a/graphics-libs/sane-backends/BUILD b/graphics-libs/sane-backends/BUILD
index 23084bdb5b..c6c4817b2a 100755
--- a/graphics-libs/sane-backends/BUILD
+++ b/graphics-libs/sane-backends/BUILD
@@ -3,9 +3,9 @@ create_group scanner &&
LDFLAGS="-pthread $LDFLAGS"
if [[ $USEFORK == y ]]; then
- OPTS="$OPTS --enable-fork-process"
+ OPTS="$OPTS --disable-pthread"
else
- OPTS="$OPTS --disable-fork-process"
+ OPTS="$OPTS --enable-pthread"
fi &&
if [[ $IPV6 == y ]]; then
diff --git a/graphics-libs/sane-backends/HISTORY b/graphics-libs/sane-backends/HISTORY
index ebbd56884e..1b7b5fdf30 100644
--- a/graphics-libs/sane-backends/HISTORY
+++ b/graphics-libs/sane-backends/HISTORY
@@ -1,6 +1,7 @@
2010-10-06 Eric Sandall <sandalle@sourcemage.org>
* BUILD: Disable texlive document creation
Allow user to override OPTS (parameter listed last)
+ ./configure does not know --enable-fork-process, renamed to --disable-pthread
* DEPENDS: texlive 20091107 breaks documentation creation
2010-08-24 Finn Haedicke <finn@sourcemage.org>