diff options
author | ade <ade@FreeBSD.org> | 2006-02-28 06:27:50 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2006-02-28 06:27:50 +0800 |
commit | 22509f783846a488c8df8100e1d1a314e444ea15 (patch) | |
tree | 8fc79f8622859a6b5bc4528271a649a84d921d0d | |
parent | aeacbf29558b99533bd5300f0b8976f0677c0546 (diff) | |
download | freebsd-ports-gnome-22509f783846a488c8df8100e1d1a314e444ea15.tar.gz freebsd-ports-gnome-22509f783846a488c8df8100e1d1a314e444ea15.tar.zst freebsd-ports-gnome-22509f783846a488c8df8100e1d1a314e444ea15.zip |
Fix hardcoded (!?) references to gtk12 to point to gtk-12 from the
libtool conversion.
Submitted by: pointhat, itetcu_@IRC, others
Approved by: portmgr (implicit)
-rw-r--r-- | multimedia/transcode/files/patch-configure | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/multimedia/transcode/files/patch-configure b/multimedia/transcode/files/patch-configure index b84c9116290d..59d32c00fcdd 100644 --- a/multimedia/transcode/files/patch-configure +++ b/multimedia/transcode/files/patch-configure @@ -95,7 +95,7 @@ case $l in -L*) lpaths="$lpaths $l" ;; - -l*) test x"$l" != x"-lgtk" && xlibs="$xlibs $l" ;; -+ -l*) test x"$l" != x"-lgtk12" && xlibs="$xlibs $l" ;; ++ -l*) test x"$l" != x"-lgtk-12" && xlibs="$xlibs $l" ;; *) xlf="$xlf $l" ;; esac done @@ -105,14 +105,14 @@ LDFLAGS="$LDFLAGS $gtk_ll" - echo "$as_me:$LINENO: checking for gtk_init in -lgtk" >&5 -echo $ECHO_N "checking for gtk_init in -lgtk... $ECHO_C" >&6 -+ echo "$as_me:$LINENO: checking for gtk_init in -lgtk12" >&5 -+echo $ECHO_N "checking for gtk_init in -lgtk12... $ECHO_C" >&6 ++ echo "$as_me:$LINENO: checking for gtk_init in -lgtk-12" >&5 ++echo $ECHO_N "checking for gtk_init in -lgtk-12... $ECHO_C" >&6 if test "${ac_cv_lib_gtk_gtk_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS -LIBS="-lgtk $GTK_EXTRA_LIBS $LIBS" -+LIBS="-lgtk12 $GTK_EXTRA_LIBS $LIBS" ++LIBS="-lgtk-12 $GTK_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF @@ -121,7 +121,7 @@ echo "${ECHO_T}$ac_cv_lib_gtk_gtk_init" >&6 if test $ac_cv_lib_gtk_gtk_init = yes; then - GTK_LIBS="$gtk_ll -lgtk $GTK_EXTRA_LIBS" -+ GTK_LIBS="$gtk_ll -lgtk12 $GTK_EXTRA_LIBS" ++ GTK_LIBS="$gtk_ll -lgtk-12 $GTK_EXTRA_LIBS" else tc_pkg_err="yes" |