1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/devel/glib12/files/patch-ac

37 lines
985 B
Plaintext
Raw Normal View History

1998-12-26 19:17:44 +00:00
--- glib-config.in.orig Wed Dec 16 09:30:46 1998
1999-01-20 18:31:00 +00:00
+++ glib-config.in Tue Jan 19 23:20:59 1999
1998-12-12 03:43:00 +00:00
@@ -7,7 +7,7 @@
usage()
{
cat <<EOF
-Usage: glib-config [OPTIONS] [LIBRARIES]
+Usage: glib@LT_RELEASE@-config [OPTIONS] [LIBRARIES]
1998-12-12 03:43:00 +00:00
Options:
[--prefix[=DIR]]
[--exec-prefix[=DIR]]
1998-12-26 19:17:44 +00:00
@@ -91,20 +91,20 @@
if test "$lib_gthread" = "yes"; then
cflags="$cflags @G_THREAD_CFLAGS@"
fi
- echo -I@libdir@/glib/include $includes $cflags
+ echo $includes $cflags
fi
if test "$echo_libs" = "yes"; then
1998-12-26 19:17:44 +00:00
libsp=""
libsa=""
if test "$lib_glib" = "yes"; then
1998-12-26 19:17:44 +00:00
- libsp="$libsp -lglib"
+ libsp="$libsp -lglib@LT_RELEASE@"
1998-12-26 19:17:44 +00:00
fi
if test "$lib_gthread" = "yes"; then
- libsp="-lgthread $libsp"
+ libsp="-lgthread@LT_RELEASE@ $libsp"
1998-12-26 19:17:44 +00:00
libsa="$libsa @G_THREAD_LIBS@"
fi
if test "$lib_gmodule" = "yes"; then
1998-12-26 19:17:44 +00:00
- libsp="@G_MODULE_LDFLAGS@ -lgmodule $libsp"
+ libsp="@G_MODULE_LDFLAGS@ -lgmodule@LT_RELEASE@ $libsp"
1998-12-26 19:17:44 +00:00
libsa="$libsa @G_MODULE_LIBS@"
fi
1998-12-26 19:17:44 +00:00
echo -L@libdir@ $libsp $libsa