summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2011-03-23 09:54:09 -0700
committerAaron Plattner <aplattner@nvidia.com>2011-03-23 09:54:09 -0700
commit356ee1be3efb647182e902b97c314441e96b59df (patch)
tree451ff560e812f3b7caceeae20f757554107805c3
parent6f3dc02c4689d9413eb029fcc5723d687f44ff71 (diff)
260.19.44260.19.44
-rw-r--r--Makefile1
-rw-r--r--utils.mk6
-rw-r--r--version.mk2
3 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0bfa6f2..95d47ea 100644
--- a/Makefile
+++ b/Makefile
@@ -104,6 +104,7 @@ endif
LDFLAGS += -lX11 -lXext -lm
LDFLAGS += $(GTK_LDFLAGS)
+LDFLAGS += $(LIBDL_LDFLAGS)
MANPAGE_GZIP ?= 1
diff --git a/utils.mk b/utils.mk
index 882b6ce..dbdc70d 100644
--- a/utils.mk
+++ b/utils.mk
@@ -97,6 +97,12 @@ ifndef TARGET_ARCH
TARGET_ARCH := $(subst i686,x86,$(TARGET_ARCH))
endif
+ifeq ($(TARGET_OS),Linux)
+ LIBDL_LDFLAGS = -ldl
+else
+ LIBDL_LDFLAGS =
+endif
+
OUTPUTDIR ?= _out/$(TARGET_OS)_$(TARGET_ARCH)
NV_QUIET_COMMAND_REMOVED_TARGET_PREFIX ?=
diff --git a/version.mk b/version.mk
index 1d632c0..722fc03 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 260.19.36
+NVIDIA_VERSION = 260.19.44