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

31 lines
752 B
Plaintext
Raw Normal View History

1998-12-12 03:43:00 +00:00
--- glib-config.in.orig Wed Sep 16 03:08:07 1998
+++ glib-config.in Fri Dec 11 21:43:37 1998
@@ -7,7 +7,7 @@
usage()
{
cat <<EOF
-Usage: glib-config [OPTIONS] [LIBRARIES]
+Usage: glib11d-config [OPTIONS] [LIBRARIES]
Options:
[--prefix[=DIR]]
[--exec-prefix[=DIR]]
@@ -83,15 +83,15 @@
echo $exec_prefix
fi
if test "$echo_cflags" = "yes"; then
- echo -I@libdir@/glib/include $includes
+ echo $includes
fi
if test "$echo_libs" = "yes"; then
libs=""
if test "$lib_glib" = "yes"; then
- libs="$libs -lglib"
1998-12-12 03:43:00 +00:00
+ libs="$libs -lglib11d"
fi
if test "$lib_gmodule" = "yes"; then
- libs="@G_MODULE_LDFLAGS@ -lgmodule $libs @G_MODULE_LIBS@"
1998-12-12 03:43:00 +00:00
+ libs="@G_MODULE_LDFLAGS@ -lgmodule11d $libs @G_MODULE_LIBS@"
fi
echo "-L@libdir@ $libs"
fi