]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
OK, at least Solaris also needs the full set of libraries, too.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Wed, 1 May 2002 19:26:57 +0000 (19:26 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Wed, 1 May 2002 19:26:57 +0000 (19:26 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@2369 7a7537e8-13f0-0310-91df-b6672ffda945

cups-config.in

index c20add38fa398e7f78bc32e84dd59049570edf4c..c2a8b71fa38db5e0d8f0a35bef95640bf672ca8a 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# "$Id: cups-config.in,v 1.8 2002/04/19 20:04:38 mike Exp $"
+# "$Id: cups-config.in,v 1.9 2002/05/01 19:26:57 mike Exp $"
 # 
 #   CUPS configuration utility.
 #
@@ -96,21 +96,10 @@ while test $# -gt 0; do
            ;;
        --libs)
            if test $static = no; then
-               # AIX requires all libraries for shared libraries, while
-               # other platforms store the referenced libraries in the
-               # shared library itself.
-               if test x`uname` = xAIX; then
-                   if test $image = no; then
-                       echo -lcups $LIBS
-                   else
-                       echo -lcupsimage $IMGLIBS -lcups $LIBS
-                   fi
+               if test $image = no; then
+                   echo -lcups $LIBS
                else
-                   if test $image = no; then
-                       echo -lcups
-                   else
-                       echo -lcupsimage -lcups
-                   fi
+                   echo -lcupsimage $IMGLIBS -lcups $LIBS
                fi
            else
                if test $image = no; then
@@ -141,5 +130,5 @@ while test $# -gt 0; do
 done
 
 #
-# End of "$Id: cups-config.in,v 1.8 2002/04/19 20:04:38 mike Exp $".
+# End of "$Id: cups-config.in,v 1.9 2002/05/01 19:26:57 mike Exp $".
 #