diff options
author | nectar <nectar@FreeBSD.org> | 2000-01-17 23:24:38 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2000-01-17 23:24:38 +0800 |
commit | 4ae5dfc05e11e70552d0fc64691e23ccf598e4d7 (patch) | |
tree | c06a5f77ab14365b0185dbd61fa5b3b792c882d0 /x11-toolkits/wxgtk24 | |
parent | 1d4bdb59cede437e7512101cc9a46304ddf444e1 (diff) | |
download | freebsd-ports-gnome-4ae5dfc05e11e70552d0fc64691e23ccf598e4d7.tar.gz freebsd-ports-gnome-4ae5dfc05e11e70552d0fc64691e23ccf598e4d7.tar.zst freebsd-ports-gnome-4ae5dfc05e11e70552d0fc64691e23ccf598e4d7.zip |
Oops, lost change to look for gtk12-config instead of gtk-config during
configure step.
Diffstat (limited to 'x11-toolkits/wxgtk24')
-rw-r--r-- | x11-toolkits/wxgtk24/files/patch-aa | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/x11-toolkits/wxgtk24/files/patch-aa b/x11-toolkits/wxgtk24/files/patch-aa index c176d82fe805..d83cf9891695 100644 --- a/x11-toolkits/wxgtk24/files/patch-aa +++ b/x11-toolkits/wxgtk24/files/patch-aa @@ -1,5 +1,35 @@ ---- configure.in.orig Fri Jan 14 09:24:19 2000 -+++ configure.in Fri Jan 14 09:26:29 2000 +--- configure.in.orig Tue Nov 9 10:48:20 1999 ++++ configure.in Mon Jan 17 09:13:20 2000 +@@ -22,17 +22,17 @@ + if test x$gtk_config_exec_prefix != x ; then + gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" + if test x${GTK_CONFIG+set} != xset ; then +- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config ++ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk12-config + fi + fi + if test x$gtk_config_prefix != x ; then + gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" + if test x${GTK_CONFIG+set} != xset ; then +- GTK_CONFIG=$gtk_config_prefix/bin/gtk-config ++ GTK_CONFIG=$gtk_config_prefix/bin/gtk12-config + fi + fi + +- AC_PATH_PROG(GTK_CONFIG, gtk-config, no) ++ AC_PATH_PROG(GTK_CONFIG, gtk12-config, no) + min_gtk_version=ifelse([$1], ,0.99.7,$1) + AC_MSG_CHECKING(for GTK - version >= $min_gtk_version) + no_gtk="" +@@ -1501,7 +1501,7 @@ + if test "$wxUSE_GTK" = 1; then + dnl avoid calling AM_PATH_GTK twice, so check first for the newer version and + dnl only then, if it wasn't found, for an older one +- AM_PATH_GTK(1.2.1, WXGTK12=1, AC_MSG_ERROR(Is gtk-config in path and GTK+ is version 1.2.1 or above?)) ++ AM_PATH_GTK(1.2.1, WXGTK12=1, AC_MSG_ERROR(Is gtk12-config in path and GTK+ is version 1.2.1 or above?)) + + TOOLKIT_INCLUDE="$GTK_CFLAGS" + GUI_TK_LIBRARY="$GTK_LIBS" @@ -1701,12 +1701,10 @@ WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a" |