| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- Remove lorder(1) and tsort(1) stuff, because it is not needed on modern
- systems and makes problems under some platforms (e.g. older Linux).
- --- src/Makefile.global.in.orig Thu Sep 5 00:54:18 2002
- +++ src/Makefile.global.in Tue Jul 1 17:17:25 2003
- @@ -193,7 +193,7 @@
- LDREL = -r
- LDOUT = -o
- RANLIB = @RANLIB@
- -LORDER = @LORDER@
- +MK_NO_LORDER= true
- X = @EXEEXT@
-
- # Perl
- --- src/makefiles/Makefile.freebsd.orig Wed Aug 29 21:14:40 2001
- +++ src/makefiles/Makefile.freebsd Tue Jul 1 17:23:00 2003
- @@ -16,7 +16,7 @@
- $(LD) $(LDREL) $(LDOUT) $<.obj -x $<
- @echo building shared object $@
- @rm -f $@.pic
- - @${AR} cq $@.pic `lorder $<.obj | tsort`
- + @${AR} cq $@.pic
- ${RANLIB} $@.pic
- @rm -f $@
- $(LD) -x -Bshareable -Bforcearchive -o $@ $@.pic
- --- src/makefiles/Makefile.openbsd.orig Wed Aug 29 21:14:40 2001
- +++ src/makefiles/Makefile.openbsd Tue Jul 1 17:23:12 2003
- @@ -16,7 +16,7 @@
- $(LD) $(LDREL) $(LDOUT) $<.obj -x $<
- @echo building shared object $@
- @rm -f $@.pic
- - @${AR} cq $@.pic `lorder $<.obj | tsort`
- + @${AR} cq $@.pic
- ${RANLIB} $@.pic
- @rm -f $@
- $(LD) -x -Bshareable -Bforcearchive \
- --- src/makefiles/Makefile.netbsd.orig Wed Aug 29 21:14:40 2001
- +++ src/makefiles/Makefile.netbsd Tue Jul 1 17:23:39 2003
- @@ -18,7 +18,7 @@
- $(LD) $(LDREL) $(LDOUT) $<.obj -x $<
- @echo building shared object $@
- @rm -f $@.pic
- - @${AR} cq $@.pic `lorder $<.obj | tsort`
- + @${AR} cq $@.pic
- ${RANLIB} $@.pic
- @rm -f $@
- $(LD) -x -Bshareable -Bforcearchive \
|