Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Drake <dsd@mono-cvs.ximian.com>2005-12-01 20:30:14 +0300
committerDaniel Drake <dsd@mono-cvs.ximian.com>2005-12-01 20:30:14 +0300
commit9e0dec90c63402f7931c1b631cb2053fcd265661 (patch)
treef56b349d226b9014b199c9ce09532975579e622c /support
parent7982b914df0b2e8c45296b660a223342fd4bff19 (diff)
2005-12-01 Daniel Drake <dsd@gentoo.org>
* Makefile.am: Link against libcrypt, needed for setkey(3) as referenced in stdlib.c. Problem caught by Michael Hill. svn path=/trunk/mono/; revision=53775
Diffstat (limited to 'support')
-rw-r--r--support/ChangeLog5
-rw-r--r--support/Makefile.am3
2 files changed, 7 insertions, 1 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index db8ad6c1ff3..acf7f3f4312 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-01 Daniel Drake <dsd@gentoo.org>
+
+ * Makefile.am: Link against libcrypt, needed for setkey(3) as referenced
+ in stdlib.c. Problem caught by Michael Hill.
+
2005-11-07 Jonathan Pryor <jonpryor@vt.edu>
* map-icalls.h: Oddly, this file didn't get the new functions added in
diff --git a/support/Makefile.am b/support/Makefile.am
index e56d1a1b69c..3d775a5ddad 100644
--- a/support/Makefile.am
+++ b/support/Makefile.am
@@ -54,7 +54,8 @@ MPH_SOURCE = $(MPH_C_SOURCE)
MPH_LIBS =
else
MPH_SOURCE = $(MPH_C_SOURCE) $(MPH_UNIX_SOURCE)
-MPH_LIBS = $(GLIB_LIBS)
+# -lcrypt needed for setkey(3)
+MPH_LIBS = $(GLIB_LIBS) -lcrypt
endif
if HAVE_ZLIB