openbsd-ports/print/cups/patches/patch-configure
jakemsr b8d7bcd5a4 use -pthread instead of -lpthread for pthreads linkage in CUPS
bulk build tested by steven@ (a while ago) "sure" mbalmer@
2007-12-11 08:00:06 +00:00

33 lines
1.2 KiB
Plaintext

$OpenBSD: patch-configure,v 1.5 2007/12/11 08:00:06 jakemsr Exp $
--- configure.orig Thu Nov 16 06:51:56 2006
+++ configure Sun Oct 21 00:41:30 2007
@@ -7910,8 +7910,8 @@ if test x$enable_shared != xno; then
DSOFLAGS="$DSOFLAGS -set_version,sgi2.6,-soname,\`basename \$@\` -shared \$(OPTIM)"
;;
OSF1* | Linux | GNU | *BSD*)
- LIBCUPS="libcups.so.2"
- LIBCUPSIMAGE="libcupsimage.so.2"
+ LIBCUPS="libcups.so.${LIBcups_VERSION}"
+ LIBCUPSIMAGE="libcupsimage.so.${LIBcupsimage_VERSION}"
DSO="\$(CC)"
DSOFLAGS="$DSOFLAGS -Wl,-soname,\`basename \$@\` -shared \$(OPTIM)"
;;
@@ -8162,7 +8162,7 @@ if test -n "$GCC"; then
if test -z "$OPTIM"; then
if test "x$with_optim" = x; then
# Default to optimize-for-size and debug
- OPTIM="-Os -g"
+ OPTIM=""
else
OPTIM="$with_optim $OPTIM"
fi
@@ -12405,7 +12405,7 @@ fi
if test x$ac_cv_header_pthread_h = xyes; then
- for flag in -lpthreads -lpthread -pthread; do
+ for flag in -pthread -lpthreads -lpthread ; do
echo "$as_me:$LINENO: checking for pthread_create using $flag" >&5
echo $ECHO_N "checking for pthread_create using $flag... $ECHO_C" >&6
SAVELIBS="$LIBS"