aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
Commit message (Collapse)AuthorAge
* Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into intcookiesGravatar keis2011-01-17
|\ | | | | | | | | Conflicts: Makefile
| * Merge remote branch 'keis/gtk3' into experimentalGravatar Brendan Taylor2010-12-31
| |\ | | | | | | | | | | | | Conflicts: Makefile
* | | remove example cookie daemonsGravatar Brendan Taylor2010-12-28
| | |
| | * disable deprecated symbols when using gtk+ 3Gravatar keis2010-12-28
| | |
| | * use gtk version check macroGravatar keis2010-12-28
| | |
| * | explain the .lo Makefile rulesGravatar Brendan Taylor2010-12-27
| | |
| * | only compile with -fPIC when neededGravatar Brendan Taylor2010-12-27
| | |
| * | take advantage of implicit Makefile rulesGravatar Brendan Taylor2010-12-27
| | |
| * | remove redundant CFLAGSGravatar Brendan Taylor2010-12-27
| | |
| * | separate makefile configuration section from rules sectionGravatar Brendan Taylor2010-12-27
| | |
| * | untangle the CFLAGS messGravatar Brendan Taylor2010-12-27
| | |
| * | delete all .o files in 'make clean'Gravatar Brendan Taylor2010-12-27
| |/
| * Makefile: add (commented) lines for using gtk+ 3Gravatar Brendan Taylor2010-12-27
| |
| * Merge remote branch 'keis/gtk3' into gtk3Gravatar Brendan Taylor2010-12-27
|/|
* | set config @prefix based on uzbl-browser's PREFIXGravatar Brendan Taylor2010-12-01
| |
| * Merge branch 'master' of git://github.com/Dieterbe/uzbl into gtk3Gravatar keis2010-11-30
| |\ | |/ |/| | | | | Conflicts: Makefile
* | Merge branch 'dev/fix-uzbl-tabbed'Gravatar Brendan Taylor2010-11-20
|\ \ | | | | | | | | | | | | Conflicts: Makefile
| * | add test-uzbl-tabbed-sandbox make ruleGravatar Brendan Taylor2010-11-20
| | |
* | | add test-uzbl-tabbed-sandbox make ruleGravatar Brendan Taylor2010-11-14
| | |
* | | Merge branch 'dev/soup-cookied'Gravatar Brendan Taylor2010-11-13
|\ \ \
| * | | shutdown uzbl-cookie-manager in test-uzbl-browser-sandboxGravatar Brendan Taylor2010-11-13
| | | |
* | | | Merge branch 'dev/soup-cookied'Gravatar Brendan Taylor2010-11-13
|\| | |
| * | | replace uzbl-cookie-daemon with uzbl-cookie-manager in uzbl-browser, also ↵Gravatar Brendan Taylor2010-11-13
| | | | | | | | | | | | | | | | cleanup some outdated comments in u-b
* | | | Merge branch 'dev/soup-cookied'Gravatar Brendan Taylor2010-11-13
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile
* | | | Merge branch 'dev/build-fixes'Gravatar Brendan Taylor2010-11-05
|\ \ \ \
| * | | | make uzbl-browser and uzbl-event-manager executable after sedding themGravatar Brendan Taylor2010-11-05
| | | | |
| | * | | don't link uzbl-cookie-manager with unneeded libsGravatar Brendan Taylor2010-11-05
| | | | |
| | * | | add uzbl-cookie-managerGravatar Brendan Taylor2010-10-31
| | |/ /
* | | | Merge branch 'dev/build-fixes'Gravatar Brendan Taylor2010-10-16
|\| | |
| * | | Fix Makefile bashism ({,} path expansion)Gravatar Brendan Taylor2010-10-16
| | | |
| * | | uzbl also links x11 directlyGravatar Ben Boeckel2010-10-10
| | | |
| * | | uzbl links glib-2.0 now; get its flagsGravatar Ben Boeckel2010-10-10
| |/ /
* / / add cookie-jar.o to make cleanGravatar Brendan Taylor2010-10-08
|/ /
* | install-example-data does not need the bin dirGravatar Dieter Plaetinck2010-08-25
| | | | | | | | | | install-example-data does not need the bin dir fixes a bug introduced in 85d606d8ca8c717295cf
| * configure to build with gtk+-3.0Gravatar keis2010-08-19
| |
* | create bin dir if it does *NOT* existGravatar Paweł Zuzelski2010-06-12
| |
* | fixed regression introduced by 497a01b283266047d3496db14571be600a8d732dGravatar Paweł Zuzelski2010-06-11
| | | | | | | | i.e. fixed 'sed -i gnuism' fix
* | kill gnuismGravatar Paweł Zuzelski2010-06-11
| | | | | | | | install -D is gnuism. It is not supported on (at least) MacOS X and FreeBSD.
* | kill gnuizmGravatar Paweł Zuzelski2010-06-11
|/ | | | | sed -i is gnuism and it doesn't work on MacOS X and possibly other UNIX systems. Reported by __monty__ on IRC, thanks.
* Huge plugin & event manager upgrades.Gravatar Mason Larobina2010-04-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Removed unused modules 2. Re-use event handlers with identical callbacks and args. 3. Removed plugin exceptions in favour of assertions. 4. Remove useless raw_keycmd and raw_bind config vars. 5. Implemented and use `after` and `cleanup` plugin hooks (correctly) 6. EM & plugins now use the python logging module to output messages 7. Null config items are removed automatically 8. Simpler mode plugin 9. The init plugins function is called after the INSTANCE_START event 10. New optparse option to silence event echoing to stdout 11. Close instance socket on INSTANCE_EXIT before event handling 12. Caught signals are logged 13. Show times on the messages in the log file 14. Refactor bind pluin to use uzbl.bindlet directly. 15. Refactor keycmd plugin to use uzbl.keycmd directly. 16. Refactored on_event plugin to use uzbl.on_events dict over UZBLS dict 17. Refactor completion plugin to use uzbl.completion set object. 18. Modified progress plugin to use config vars instead of `@progress k = v` 19. mode_config now a defaultdict(dict) (I.e. this allows you to `uzbl.mode_config[mode][var] = value` without needing to check `mode` is in the `uzbl.mode_config` dict). 20. Removed all default mode config values. 21. Removed all `get_mode()` and `set_mode(..)` functions (and the like). 22. Setting the mode is now done via the config object directly (I.e. `uzbl.config['mode'] = 'insert'`). 23. Uses the on_set plugin to watch for 'mode' and 'default_mode' config changes. 24. Don't raise the useless NEW_ON_SET event, missing ON_SET connect. 25. Plugin and EventHandler aren't suited as dict objects. 26. Also using collections.defaultdict(list) for uzbl.handlers dict. 27. Plugin `on_set.py` allows you to attach handlers to config var changes 28. Config plugin reduced to one `uzbl.config` dict-like object. 29. Update export and connect calls in plugins. 30. The functions connect, connect_dict, export, export_dict, require, logging are exported directly to the plugin namespace. 31. Moved parse_msg into Uzbl class. 32. Generally improved comments. 33. UzblEventDaemon now an object. 34. Various variable, function & class renames.
* example cache/data/config material should go into the real home, not a ↵Gravatar Dieter Plaetinck2010-03-23
| | | | prefixized home (/usr/local/home/..) so that when you do testing in a sandbox, it actually works
* Revert "Remove linker arg in CFLAGS and remove duplicate "-pthread" in LDFLAGS."Gravatar Mason Larobina2010-03-23
| | | | The linker argument in the CFLAGS is needed for compilation on OSX.
* Modify Makefile install targets to set the correct owner and groupsGravatar Mason Larobina2010-03-15
|
* Install docs into DOCDIR (default $(INSTALLDIR)/share/uzbl/docs/)Gravatar Alex Alexander2010-03-15
|
* Remove linker arg in CFLAGS and remove duplicate "-pthread" in LDFLAGS.Gravatar Mason Larobina2010-03-11
|
* Echo each compiler and linker call in the Makefile.Gravatar Mason Larobina2010-03-08
|
* [build] do not rebuild objects any time and remove 'why doesn't work?'Gravatar Dmytro Milinevskyy2010-03-02
|
* fixed tests target in MakefileGravatar Rob2010-02-19
|
* Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimentalGravatar Mason Larobina2010-01-24
|\
| * Don't strip binary. Strip moved to separate targetGravatar Paweł Zuzelski2010-01-12
| | | | | | | | Makefile should not strip binary. It should be handled by package manager.