diff options
author | Mike Pall <mike> | 2009-12-20 18:41:55 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2009-12-20 18:41:55 +0100 |
commit | 34d716947ca17917a4b30a4d280ba72bd3223a14 (patch) | |
tree | a869746104a262452b29211dd3fa8500fd5a8db0 /src/Makefile | |
parent | a1d4d05f2ce7ed3c8ab0978ffb3b6055ceaaa7eb (diff) | |
download | luajit-34d716947ca17917a4b30a4d280ba72bd3223a14.tar.gz luajit-34d716947ca17917a4b30a4d280ba72bd3223a14.tar.bz2 luajit-34d716947ca17917a4b30a4d280ba72bd3223a14.zip |
Properly compile on Debian kFreeBSD.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index cd246af8..209758fe 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -211,6 +211,9 @@ else | |||
211 | ifeq (Linux,$(TARGET_SYS)) | 211 | ifeq (Linux,$(TARGET_SYS)) |
212 | TARGET_XLIBS+= -ldl | 212 | TARGET_XLIBS+= -ldl |
213 | endif | 213 | endif |
214 | ifeq (GNU/kFreeBSD,$(TARGET_SYS)) | ||
215 | TARGET_XLIBS+= -ldl | ||
216 | endif | ||
214 | endif | 217 | endif |
215 | endif | 218 | endif |
216 | 219 | ||