comparison src/Makefile @ 30731:2295ee9c025d v9.0.0700

patch 9.0.0700: there is no real need for a "big" build Commit: https://github.com/vim/vim/commit/25f3a146a0e4c731b8608f4cfbbfdf7a71b2d05e Author: Martin Tournoij <martin@arp242.net> Date: Sat Oct 8 19:26:41 2022 +0100 patch 9.0.0700: there is no real need for a "big" build Problem: There is no real need for a "big" build. Solution: Move common features to "normal" build, less often used features to the "huge" build. (Martin Tournoij, closes #11283)
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Oct 2022 20:30:05 +0200
parents 101f08b49ed3
children 3a01529f17f5
comparison
equal deleted inserted replaced
30730:f4a543b2595c 30731:2295ee9c025d
451 451
452 # TCL 452 # TCL
453 # Uncomment this when you want to include the Tcl interface. 453 # Uncomment this when you want to include the Tcl interface.
454 # First one is for static linking, second one for dynamic loading. 454 # First one is for static linking, second one for dynamic loading.
455 # Debian package is "tcl-dev". 455 # Debian package is "tcl-dev".
456 # This requires at least "normal" features, "tiny" doesn't work.
457 #CONF_OPT_TCL = --enable-tclinterp 456 #CONF_OPT_TCL = --enable-tclinterp
458 #CONF_OPT_TCL = --enable-tclinterp=dynamic 457 #CONF_OPT_TCL = --enable-tclinterp=dynamic
459 #CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4 458 #CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4
460 459
461 # CSCOPE 460 # CSCOPE
480 #CONF_OPT_TERMINAL = --disable-terminal 479 #CONF_OPT_TERMINAL = --disable-terminal
481 480
482 # MULTIBYTE - To edit multi-byte characters. 481 # MULTIBYTE - To edit multi-byte characters.
483 # This is now always enabled. 482 # This is now always enabled.
484 483
485 # When building with at least "big" features, right-left and Arabic 484 # When building with "huge" features, right-left and Arabic
486 # features are enabled. Use this to disable them. 485 # features are enabled. Use this to disable them.
487 #CONF_OPT_MULTIBYTE = --disable-rightleft --disable-arabic 486 #CONF_OPT_MULTIBYTE = --disable-rightleft --disable-arabic
488 487
489 # NLS - National Language Support 488 # NLS - National Language Support
490 # Uncomment this when you do not want to support translated messages, even 489 # Uncomment this when you do not want to support translated messages, even
516 # sysmouse - For mouse support on FreeBSD and DragonFly console via sysmouse 515 # sysmouse - For mouse support on FreeBSD and DragonFly console via sysmouse
517 # Uncomment this when you do not want do include sysmouse support, even 516 # Uncomment this when you do not want do include sysmouse support, even
518 # though you have /dev/sysmouse and includes. 517 # though you have /dev/sysmouse and includes.
519 #CONF_OPT_SYSMOUSE = --disable-sysmouse 518 #CONF_OPT_SYSMOUSE = --disable-sysmouse
520 519
521 # libcanberra - For sound support. Default is on for big features. 520 # libcanberra - For sound support. Default is on for huge features.
522 # Uncomment one of the two to chose otherwise. 521 # Uncomment one of the two to chose otherwise.
523 # CONF_OPT_CANBERRA = --enable-canberra 522 # CONF_OPT_CANBERRA = --enable-canberra
524 # CONF_OPT_CANBERRA = --disable-canberra 523 # CONF_OPT_CANBERRA = --disable-canberra
525 524
526 # libsodium - For enhanced encryption. Default is on. 525 # libsodium - For enhanced encryption. Default is on.
530 # FEATURES - For creating Vim with more or less features 529 # FEATURES - For creating Vim with more or less features
531 # Uncomment one of these lines when you want to include few to many features. 530 # Uncomment one of these lines when you want to include few to many features.
532 # The default is "huge" for most systems. 531 # The default is "huge" for most systems.
533 #CONF_OPT_FEAT = --with-features=tiny 532 #CONF_OPT_FEAT = --with-features=tiny
534 #CONF_OPT_FEAT = --with-features=normal 533 #CONF_OPT_FEAT = --with-features=normal
535 #CONF_OPT_FEAT = --with-features=big
536 #CONF_OPT_FEAT = --with-features=huge 534 #CONF_OPT_FEAT = --with-features=huge
537 535
538 # COMPILED BY - For including a specific e-mail address for ":version". 536 # COMPILED BY - For including a specific e-mail address for ":version".
539 #CONF_OPT_COMPBY = "--with-compiledby=John Doe <JohnDoe@yahoo.com>" 537 #CONF_OPT_COMPBY = "--with-compiledby=John Doe <JohnDoe@yahoo.com>"
540 538