diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2013-01-16 23:40:05 +0100 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2013-01-16 23:40:05 +0100 |
commit | ab689196c9623c238cd7e3919be209001a37dc2a (patch) | |
tree | b356d7350dd5273d13d380406f633a56a254901a /milter_api.gpr | |
parent | 526920ed5abdc31c4135fb34fcb617b3cf9320c3 (diff) |
Added the thread wrapper module.
Diffstat (limited to 'milter_api.gpr')
-rw-r--r-- | milter_api.gpr | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/milter_api.gpr b/milter_api.gpr index b3b47cc..741cfe4 100644 --- a/milter_api.gpr +++ b/milter_api.gpr @@ -1,5 +1,5 @@ -- Projects that use the Ada Milter API should import this file. --- Copyright 2009 - 2012 B. Persson, Bjorn@Rombobeorn.se +-- Copyright 2009 - 2013 B. Persson, Bjorn@Rombobeorn.se -- -- This library is free software: you can redistribute it and/or modify it -- under the terms of the GNU General Public License version 3, as published @@ -12,4 +12,9 @@ project Milter_API is for Library_Dir use Directories.Libdir; for Library_ALI_Dir use Directories.Libdir & "/adamilter"; for Externally_Built use "true"; + + package Linker is + for Linker_Options use ("-ladamilter_thread_wrapper", "-ldl"); + end Linker; + end Milter_API; |