]> git.wh0rd.org - fontconfig.git/commitdiff
add shared library support for Tru64 UNIX and IRIX (bug #14)
authorKeith Packard <keithp@keithp.com>
Thu, 6 Feb 2003 19:25:53 +0000 (19:25 +0000)
committerKeith Packard <keithp@keithp.com>
Thu, 6 Feb 2003 19:25:53 +0000 (19:25 +0000)
configure.in

index a3c1f75fc2d2371c8329fb5070534c0d8d1399d5..bacea7be5c6005f395420663d74dd4ce1d443783 100644 (file)
@@ -91,6 +91,22 @@ else
        DSO_LDOPTS='-G -z text -z defs -h $@'
        LIBS="$LIBS -lc"
        ;;
+   *irix6*)
+       DSO_LDOPTS='-shared -rpath $(libdir) -set_version sgi1.0 -soname $@'
+       LIBS="$LIBS -lc"
+       ;;
+    *osf[[123]]*)
+       # since the library is using soname-style versioning, don't use
+       # internal versioning, via -set_version.
+       DSO_LDOPTS='-shared -rpath $(libdir) -soname $@'
+       LIBS="$LIBS -lc"
+       ;;
+    *osf[[45]]*)
+       # since the library is using soname-style versioning, don't use
+       # internal versioning, via -set_version.
+       DSO_LDOPTS='-shared -msym -rpath $(libdir) -soname $@'
+       LIBS="$LIBS -lc"
+       ;;
     *)
        DSO_LDOPTS='-shared -h $@'
        ;;
@@ -314,6 +330,7 @@ esac
 
 AC_OUTPUT([Makefile
          config/Makedefs
+         fc-lang/Makefile
          src/Makefile
          fc-cache/Makefile
          fc-list/Makefile