make bluefish t owork with zen coding


 
Thread Tools Search this Thread
Top Forums Web Development make bluefish t owork with zen coding
# 1  
Old 03-01-2012
make bluefish t owork with zen coding

Hi,

I have installed on bluefish on the computer that run windows 7 and the zen coding doesn't work.

I know that in order for zen coding to work it demand python.
I do have python 2.7 in the directory python27.


but when I check the built info I get:
Code:
This version of Bluefish was built with:
./configure  'CONFIG_SITE=win32/config.nsis'
gtk 2.24.8 (runtime gtk 2.24.8)
glib 2.28.8 (runtime 2.28.8)
with libenchant... yes
with libenchant >= 1.4... yes
with libgucharmap... no
with libgucharmap_2... yes
with python... no

How can I download version of bluefish that will be built with python?
So that the zen coding will work there.
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Bluefish: where are the preferences saved?

I have just tried out Bluefish as an alternative to my regular text editor. If I save the modified preferences and reboot, the preferences have to be reentered again. Does anyone know which file the preferences are saved in? The command find / -mmin -5 | grep bluefish yields zero hits. Thanks... (2 Replies)
Discussion started by: figaro
2 Replies

2. Gentoo

Creative Zen Sleek Photo...

Hi all, My thanks in advance for reading and any posts. Just wondering if anyone knows of anywhere where I can get a driver from for a creative zen sleek photo for redhad Fedora? I ordered it stupidly without making sure that it would work on Fedora, seems that it only works on WinXP. ... (2 Replies)
Discussion started by: B14speedfreak
2 Replies
Login or Register to Ask a Question
PYTHON-CONFIG(1)					      General Commands Manual						  PYTHON-CONFIG(1)

NAME
python-config - output build options for python C/C++ extensions or embedding SYNOPSIS
python-config [ --prefix ] [ --exec-prefix ] [ --includes ] [ --libs ] [ --cflags ] [ --ldflags ] [ --extension-suffix ] [ --configdir ] [ --help ] DESCRIPTION
python-config helps compiling and linking programs, which embed the Python interpreter, or extension modules that can be loaded dynamically (at run time) into the interpreter. OPTIONS
--cflags print the C compiler flags. --ldflags print the flags that should be passed to the linker. --includes similar to --cflags but only with -I options (path to python header files). --libs similar to --ldflags but only with -l options (used libraries). --prefix prints the prefix (base directory) under which python can be found. --exec-prefix print the prefix used for executable program directories (such as bin, sbin, etc). --extension-suffix print suffix used for extension modules (including the _d modified for debug builds). --configdir prints the path to the configuration directory under which the Makefile, etc. can be found). --help print the usage message. EXAMPLES
To build the singe-file c program prog against the python library, use gcc $(python-config --cflags --ldflags) progr.cpp -o progr.cpp The same in a makefile: CFLAGS+=$(shell python-config --cflags) LDFLAGS+=$(shell python-config --ldflags) all: progr To build a dynamically loadable python module, use gcc $(python-config --cflags --ldflags) -shared -fPIC progr.cpp -o progr.so SEE ALSO
python (1) http://docs.python.org/extending/extending.html /usr/share/doc/python/faq/extending.html AUTHORS
This manual page was written by Johann Felix Soden <johfel@gmx.de> for the Debian project (and may be used by others). November 27, 2011 PYTHON-CONFIG(1)