Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 84684 Details for
Bug 130022
WordNet doesn't honor the tcltk use flag
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Allowing wordnet to be build without wnb
Wordnet-2.1-wnb.patch (text/plain), 1.14 KB, created by
Anton Kazennikov
on 2006-04-14 23:44:16 UTC
(
hide
)
Description:
Allowing wordnet to be build without wnb
Filename:
MIME Type:
Creator:
Anton Kazennikov
Created:
2006-04-14 23:44:16 UTC
Size:
1.14 KB
patch
obsolete
>--- WordNet-2.1/configure.ac 2005-07-08 22:19:09.000000000 +0400 >+++ WordNet-2.1b/configure.ac 2006-04-15 02:05:43.230800500 +0400 >@@ -29,10 +29,21 @@ > > AM_INIT_AUTOMAKE(WordNet, 2.1) > >+AC_ARG_ENABLE(wnb, >+ [ --enable-wnb Enable wnb building], >+ [case "${enableval}" in >+ yes) want_wnb=yes ;; >+ no) want_wnb=no ;; >+ *) AC_MSG_ERROR(bad value ${enableval} for --enable-wnb) ;; >+ esac], [want_wnb=no]) >+AM_CONDITIONAL([WANT_WNB], [test $want_wnb = "yes"]) >+ >+if [ test x$want_wnb = "xyes" ]; then > SC_PATH_TCLCONFIG > SC_PATH_TKCONFIG > SC_LOAD_TCLCONFIG > SC_LOAD_TKCONFIG >+fi > > # This doesn't do anything > AC_CONFIG_COMMANDS([default]) >--- WordNet-2.1/src/Makefile.am 2005-07-06 23:01:07.000000000 +0400 >+++ WordNet-2.1b/src/Makefile.am 2006-04-15 02:14:51.573069750 +0400 >@@ -1,9 +1,15 @@ >+ >+if WANT_WNB > EXTRA_DIST = wnb >-bin_PROGRAMS = wn wishwn >-bin_SCRIPTS = wnb >+WISHWN = wishwn >+WNB = wnb > wishwn_SOURCES = tkAppInit.c stubs.c > wishwn_CPPFLAGS = $(INCLUDES) > wishwn_LDADD = $(LDADD) $(TK_LIB_SPEC) $(TCL_LIB_SPEC) $(TK_LIBS) >+endif >+ >+bin_PROGRAMS = wn $(WISHWN) >+bin_SCRIPTS = $(WNB) > wn_SOURCES = wn.c > wn_CPPFLAGS = $(INCLUDES) > wn_LDADD = $(LDADD)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 130022
: 84684 |
84685