diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2005-06-21 02:54:15 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2005-06-21 02:54:15 +0000 |
| commit | 7eb3f3dedaa4c0edbe14c3d3d9617051c31c3e69 (patch) | |
| tree | ce31677bc201fe68be43eedee414dd1122e3687b /src/tests/shlib | |
| parent | 8e1a4096998997ca87d7f40d40992224968963b7 (diff) | |
| download | krb5-7eb3f3dedaa4c0edbe14c3d3d9617051c31c3e69.tar.gz krb5-7eb3f3dedaa4c0edbe14c3d3d9617051c31c3e69.tar.xz krb5-7eb3f3dedaa4c0edbe14c3d3d9617051c31c3e69.zip | |
Use DL_LIB and THREAD_LINKOPTS instead of explicitly specifying the dl
and pthread libraries by name.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17265 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/shlib')
| -rw-r--r-- | src/tests/shlib/ChangeLog | 4 | ||||
| -rw-r--r-- | src/tests/shlib/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/tests/shlib/ChangeLog b/src/tests/shlib/ChangeLog index 32e9b4834..bfea7ca78 100644 --- a/src/tests/shlib/ChangeLog +++ b/src/tests/shlib/ChangeLog @@ -1,3 +1,7 @@ +2005-06-20 Ken Raeburn <raeburn@mit.edu> + + * Makefile.in (t_loader): Use DL_LIB instead of -ldl. + 2005-02-08 Ken Raeburn <raeburn@mit.edu> * t_loader.c (verbose): New variable. diff --git a/src/tests/shlib/Makefile.in b/src/tests/shlib/Makefile.in index daf8ff0af..49cf20fa2 100644 --- a/src/tests/shlib/Makefile.in +++ b/src/tests/shlib/Makefile.in @@ -21,7 +21,7 @@ valgrind-t_loader: t_loader $(RUN_SETUP) $(VALGRIND) $(VALGRINDFLAGS) ./t_loader t_loader: t_loader.o - $(CC_LINK) -o t_loader t_loader.o -ldl + $(CC_LINK) -o t_loader t_loader.o $(DL_LIB) check-unix:: |
