17 lines
398 B
Plaintext
17 lines
398 B
Plaintext
$NetBSD: patch-ml,v 1.5 2012/09/02 06:43:41 ryoon Exp $
|
|
|
|
Treat DragonFly like FreeBSD.
|
|
|
|
--- mozilla/js/src/Makefile.in.orig 2012-08-25 00:31:11.000000000 +0000
|
|
+++ mozilla/js/src/Makefile.in
|
|
@@ -678,6 +678,9 @@ endif # _MSC_VER
|
|
ifeq ($(OS_ARCH),FreeBSD)
|
|
EXTRA_LIBS += -pthread
|
|
endif
|
|
+ifeq ($(OS_ARCH),DragonFly)
|
|
+EXTRA_LIBS += -pthread
|
|
+endif
|
|
ifeq ($(OS_ARCH),Linux)
|
|
EXTRA_LIBS += -ldl
|
|
endif
|