diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-05-17 16:56:02 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-05-17 16:56:02 +0000 |
commit | 636097337c460398910d1af01c5b92bd5f1e9394 (patch) | |
tree | 3d2ac4036084b8829835de3d7e57e02a993cb19b /devel/dlcompat/patches | |
parent | fe60cdbcb8842967a735276e2fe1ed5f3bd041f7 (diff) | |
download | pkgsrc-636097337c460398910d1af01c5b92bd5f1e9394.tar.gz |
Import dlcompat-20020508, from Jeff Putsch <jdputsch@attbi.com> in
pkg/16104, with a few tweaks. This package is for Darwin/Mac OS X
systems only.
dlcompat provides the dlopen() interface for dynamic loading of
modules for applications that need it. It is based on Apple code
that was only released via Darwin CVS.
This version comes from the Fink project.
Diffstat (limited to 'devel/dlcompat/patches')
-rw-r--r-- | devel/dlcompat/patches/patch-aa | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/dlcompat/patches/patch-aa b/devel/dlcompat/patches/patch-aa new file mode 100644 index 00000000000..dc2943c4ea7 --- /dev/null +++ b/devel/dlcompat/patches/patch-aa @@ -0,0 +1,24 @@ +--- Makefile.orig Sun May 12 22:36:53 2002 ++++ Makefile Sun May 12 22:37:42 2002 +@@ -19,7 +19,7 @@ + # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +-prefix=/usr ++prefix=${PREFIX} + DEBUG=0 + + CC=cc +@@ -67,10 +67,10 @@ + $(RANLIB) libdl.a + + libdl.dylib: libdl.0.dylib +- ln -sf $+ $@ ++ ln -sf $> $@ + + libdl.0.dylib: $(OBJS) +- $(CC) -dynamiclib -o $@ $+ -install_name $(prefix)/lib/$@ ++ $(CC) -dynamiclib -o $@ $> -install_name $(prefix)/lib/$@ + + clean: + rm -f $(OBJS) libdl.* *~ *.o |